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 skrah
Recipients BreamoreBoy, amaury.forgeotdarc, mkc, skrah
Date 2010-07-09.16:39:16
SpamBayes Score 0.0019459524
Marked as misclassified No
Message-id <1278693558.64.0.0600401954354.issue5321@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, it's an issue in py3k. Also, I prefer the behavior of 2.5, but
I'm not sure if that can be changed easily in 2.7.


$ python2.5 -c 'print((1, 2, 3))' > /dev/full
close failed: [Errno 28] No space left on device

$ python2.7 -c 'print((1, 2, 3))' > /dev/full
close failed in file object destructor:
Error in sys.excepthook:

Original exception was:


$ python3.2 -c 'print((1, 2, 3))' > /dev/full
$
History
Date User Action Args
2010-07-09 16:39:18skrahsetrecipients: + skrah, mkc, amaury.forgeotdarc, BreamoreBoy
2010-07-09 16:39:18skrahsetmessageid: <1278693558.64.0.0600401954354.issue5321@psf.upfronthosting.co.za>
2010-07-09 16:39:17skrahlinkissue5321 messages
2010-07-09 16:39:16skrahcreate