summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 22:19:38 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 22:19:38 (GMT)
commitb57f108b03df332d276a224c92e32cee13a042f2 (patch)
tree954924ef9693e020c58d90999bdb548af8f45f9f /Misc
parente9d44ccb2279a49a69277d38e956731675f1b556 (diff)
downloadcpython-b57f108b03df332d276a224c92e32cee13a042f2.zip
cpython-b57f108b03df332d276a224c92e32cee13a042f2.tar.gz
cpython-b57f108b03df332d276a224c92e32cee13a042f2.tar.bz2
Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d1db0ab..b7f3907 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,6 +161,8 @@ Core and Builtins
Library
-------
+- Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available.
+
- Issue #12175: FileIO.readall() now only reads the file position and size
once.