summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-05-12 14:13:56 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-05-12 14:13:56 (GMT)
commitea6d5592f2964a17b14c1714bb06fe01918323b5 (patch)
tree2191daef69ec1b37cceddf95bc8160388fa2051a /Misc/NEWS
parentb9db9e152f3325b075e59ef4fdecfd0b9ec4746c (diff)
downloadcpython-ea6d5592f2964a17b14c1714bb06fe01918323b5.zip
cpython-ea6d5592f2964a17b14c1714bb06fe01918323b5.tar.gz
cpython-ea6d5592f2964a17b14c1714bb06fe01918323b5.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 bc57613..7701261 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,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 #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks are not longer successful if the callable is None.