summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-05 18:11:49 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-05 18:11:49 (GMT)
commit1d857453b7065dafdc34a72c1bbb2a993782b383 (patch)
treee1ba8cd8fd1fb6d2b811e96632e8efefa97a2d51 /Misc
parent397e5c98bc27416fe8a407e39e4c5aa4baf94423 (diff)
downloadcpython-1d857453b7065dafdc34a72c1bbb2a993782b383.zip
cpython-1d857453b7065dafdc34a72c1bbb2a993782b383.tar.gz
cpython-1d857453b7065dafdc34a72c1bbb2a993782b383.tar.bz2
Issue #15841: The readable(), writable() and seekable() methods of BytesIO
and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f534143..5df7962 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -658,6 +658,7 @@ Skip Montanaro
Paul Moore
Derek Morr
James A Morrison
+Alessandro Moura
Pablo Mouzo
Mher Movsisyan
Ruslan Mstoi
diff --git a/Misc/NEWS b/Misc/NEWS
index 93b679b..3e75f44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -115,6 +115,10 @@ Core and Builtins
Library
-------
+- Issue #15841: The readable(), writable() and seekable() methods of BytesIO
+ and StringIO objects now raise ValueError when the object has been closed.
+ Patch by Alessandro Moura.
+
- Issue #15509: webbrowser.UnixBrowser no longer passes empty arguments to
Popen when %action substitutions produce empty strings.