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 pitrou
Recipients BreamoreBoy, amaury.forgeotdarc, mkc, pitrou, skrah
Date 2010-07-09.18:51:17
SpamBayes Score 2.7857308e-05
Marked as misclassified No
Message-id <1278701479.02.0.984374369131.issue5321@psf.upfronthosting.co.za>
In-reply-to
Content
> The issue is that when close() calls flush(), errors are silently
> discarded

This has been fixed in 3.1 and 3.2:

$ ./python -c "with open('/dev/full', 'w') as f: print('a', file=f)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
IOError: [Errno 28] No space left on device

However, it seems sys.stdout has a different treatment:

$ ./python -c "print('a')" > /dev/full
$
History
Date User Action Args
2010-07-09 18:51:19pitrousetrecipients: + pitrou, mkc, amaury.forgeotdarc, skrah, BreamoreBoy
2010-07-09 18:51:19pitrousetmessageid: <1278701479.02.0.984374369131.issue5321@psf.upfronthosting.co.za>
2010-07-09 18:51:17pitroulinkissue5321 messages
2010-07-09 18:51:17pitroucreate