diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-14 15:28:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-14 15:28:10 (GMT) |
commit | 1e7ee9dfa0cc5007da1cbc3331b799584af8b680 (patch) | |
tree | 2dc6743ca8f3def1ffbb1eafb5d488322adcd4e2 /Misc | |
parent | e0add764688a3f3237749e0c2830b669d2c76ca0 (diff) | |
download | cpython-1e7ee9dfa0cc5007da1cbc3331b799584af8b680.zip cpython-1e7ee9dfa0cc5007da1cbc3331b799584af8b680.tar.gz cpython-1e7ee9dfa0cc5007da1cbc3331b799584af8b680.tar.bz2 |
Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed.
Patch by Alessandro Moura.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -120,6 +120,10 @@ Core and Builtins Library ------- +- Issue #15842: the SocketIO.{readable,writable,seekable} methods now + raise ValueError when the file-like object is closed. Patch by Alessandro + Moura. + - Issue #15881: Fixed atexit hook in multiprocessing. Original patch by Chris McDonough. |