diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-09 19:54:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-09 19:54:29 (GMT) |
commit | 8043cf868c5fc045f513c02b51c89f313c738246 (patch) | |
tree | 3f80e7cab718afc88120f224aa7e3a3dee313683 /Misc | |
parent | e7bd868429af3e3a1091e2cf83731530561579a1 (diff) | |
download | cpython-8043cf868c5fc045f513c02b51c89f313c738246.zip cpython-8043cf868c5fc045f513c02b51c89f313c738246.tar.gz cpython-8043cf868c5fc045f513c02b51c89f313c738246.tar.bz2 |
Issue #4604: Some objects of the I/O library could still be used after
having been closed (for instance, a read() call could return some
previously buffered data). Patch by Dmitry Vasiliev.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.1 alpha 0 Core and Builtins ----------------- +- Issue #4604: Some objects of the I/O library could still be used after + having been closed (for instance, a read() call could return some + previously buffered data). Patch by Dmitry Vasiliev. + - Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line flag to work properly. Furthermore, when specifying -u, the text stdout and stderr streams have line-by-line buffering enabled (the default being |