commit | a872de55dc9d4e292c4b8fe7e09741081890305e | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Fri Dec 05 08:26:55 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Fri Dec 05 08:26:55 2008 +0000 |
tree | ec5f79f9bd3037b42eca04cb246e831b092801c5 | |
parent | 7a259ca8e3fa23c4259f12ab65b53059a0c1df77 [diff] [blame] |
Fixed issue #4533: File read operation was dreadfully slow
diff --git a/Misc/NEWS b/Misc/NEWS index 87af173..3dd58e6 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,10 @@ 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 -------