This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mkc
Recipients mkc
Date 2009-02-19.17:50:02
SpamBayes Score 0.011462392
Marked as misclassified No
Message-id <1235065804.66.0.913102056215.issue5321@psf.upfronthosting.co.za>
In-reply-to
Content
$ python3.0 -c 'print((1, 2, 3))' > /dev/full || echo error status
$

This command gives no indication whatsoever that anything has gone
wrong.  Following this with strace demonstrates that the interpreter is
in fact ignoring these errors:

2589  write(1, "(1, 2, 3)\n"..., 10)    = -1 ENOSPC (No space left on
device)
2589  rt_sigaction(SIGINT, {SIG_DFL}, {0x47aa49, [], SA_RESTORER,
0x7fd5aa9da080}, 8) = 0
2589  write(1, "(1, 2, 3)\n"..., 10)    = -1 ENOSPC (No space left on
device)
2589  write(1, "(1, 2, 3)\n"..., 10)    = -1 ENOSPC (No space left on
device)
2589  write(1, "(1, 2, 3)\n"..., 10)    = -1 ENOSPC (No space left on
device)
2589  exit_group(0)                     = ?
History
Date User Action Args
2009-02-19 17:50:04mkcsetrecipients: + mkc
2009-02-19 17:50:04mkcsetmessageid: <1235065804.66.0.913102056215.issue5321@psf.upfronthosting.co.za>
2009-02-19 17:50:02mkclinkissue5321 messages
2009-02-19 17:50:02mkccreate