summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-14 15:28:10 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-14 15:28:10 (GMT)
commit1e7ee9dfa0cc5007da1cbc3331b799584af8b680 (patch)
tree2dc6743ca8f3def1ffbb1eafb5d488322adcd4e2 /Misc
parente0add764688a3f3237749e0c2830b669d2c76ca0 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 24c6b71..29e2c19 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.