Message 109781 - Python tracker

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.

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
$