summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-05-12 14:01:05 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-05-12 14:01:05 (GMT)
commitd10d6ae2fad2c1963e119ed7bc031b723603b363 (patch)
treef20bea510727f668e68c89320a18a8a81c8ba36f /Misc/NEWS
parent1aa5e1d63e6452234065e73e59b9f4db2c2efdeb (diff)
downloadcpython-d10d6ae2fad2c1963e119ed7bc031b723603b363.zip
cpython-d10d6ae2fad2c1963e119ed7bc031b723603b363.tar.gz
cpython-d10d6ae2fad2c1963e119ed7bc031b723603b363.tar.bz2
Issue #23796: peak and read1 methods of BufferedReader now raise ValueError
if they called on a closed object. Patch by John Hergenroeder.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ec71eb9..5a589d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #23796: peak and read1 methods of BufferedReader now raise ValueError
+ if they called on a closed object. Patch by John Hergenroeder.
+
- Issue #21795: smtpd now supports the 8BITMIME extension whenever
the new *decode_data* constructor argument is set to False.