summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 22:16:44 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 22:16:44 (GMT)
commite9d44ccb2279a49a69277d38e956731675f1b556 (patch)
tree1a3c3dd08c14d110ecf700165cfa1d1de8a7bd16 /Misc/NEWS
parent5eb555990a5f507d417d0b37d9e4a88a3c161800 (diff)
downloadcpython-e9d44ccb2279a49a69277d38e956731675f1b556.zip
cpython-e9d44ccb2279a49a69277d38e956731675f1b556.tar.gz
cpython-e9d44ccb2279a49a69277d38e956731675f1b556.tar.bz2
Issue #12175: FileIO.readall() now only reads the file position and size once.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b1d26dd..d1db0ab 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,7 +161,10 @@ Core and Builtins
Library
-------
-- Issue #12180: Fixed a few remaining errors in test_packaging when no
+- Issue #12175: FileIO.readall() now only reads the file position and size
+ once.
+
+- Issue #12180: Fixed a few remaining errors in test_packaging when no
threading.
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.