summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-09 19:54:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-09 19:54:29 (GMT)
commit8043cf868c5fc045f513c02b51c89f313c738246 (patch)
tree3f80e7cab718afc88120f224aa7e3a3dee313683 /Misc
parente7bd868429af3e3a1091e2cf83731530561579a1 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f7e126f..570f647 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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