summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-12-05 08:26:55 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-12-05 08:26:55 (GMT)
commita872de55dc9d4e292c4b8fe7e09741081890305e (patch)
treeec5f79f9bd3037b42eca04cb246e831b092801c5 /Misc
parent7a259ca8e3fa23c4259f12ab65b53059a0c1df77 (diff)
downloadcpython-a872de55dc9d4e292c4b8fe7e09741081890305e.zip
cpython-a872de55dc9d4e292c4b8fe7e09741081890305e.tar.gz
cpython-a872de55dc9d4e292c4b8fe7e09741081890305e.tar.bz2
Fixed issue #4533: File read operation was dreadfully slow
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 87af173..3dd58e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4533: File read operation was dreadfully slow due to a slowly
+ growing read buffer. Fixed by using the same growth rate algorithm as
+ Python 2.x.
+
Library
-------