diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-05 18:13:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-05 18:13:48 (GMT) |
commit | 11946fbe804d99d26724e65dcb061cda6666c4e9 (patch) | |
tree | 33d3fac84bc13fdc95c9de2943d10641fe097a21 /Misc/NEWS | |
parent | e8677c038f94795f54de324e5d9235636c92afa0 (diff) | |
parent | 1d857453b7065dafdc34a72c1bbb2a993782b383 (diff) | |
download | cpython-11946fbe804d99d26724e65dcb061cda6666c4e9.zip cpython-11946fbe804d99d26724e65dcb061cda6666c4e9.tar.gz cpython-11946fbe804d99d26724e65dcb061cda6666c4e9.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/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,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 #15447: Use subprocess.DEVNULL in webbrowser, instead of opening os.devnull explicitly and leaving it open. |