summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-10-13 11:34:16 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-10-13 11:34:16 (GMT)
commitd41a98bdd9076eeadf4d3ba6d8db287e26b89777 (patch)
tree41e6908d7d713d1981060eded58e10c00098850c /Misc/NEWS
parentf1ab47ebc4d6f6cdb0ea7f9ec73d874aae03a1f2 (diff)
downloadcpython-d41a98bdd9076eeadf4d3ba6d8db287e26b89777.zip
cpython-d41a98bdd9076eeadf4d3ba6d8db287e26b89777.tar.gz
cpython-d41a98bdd9076eeadf4d3ba6d8db287e26b89777.tar.bz2
Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one.
Also fix the bz2 module, whose classes used the same algorithm.
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 186ea21..3c3bff8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -121,6 +121,9 @@ Tests
Extension Modules
-----------------
+- Issue #13159: FileIO and BZ2File now use a linear-time buffer growth
+ strategy instead of a quadratic-time one.
+
- Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
would be finalized after the reference to its underlying BufferedRWPair's
writer got cleared by the GC.