diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-10-13 11:34:16 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-10-13 11:34:16 (GMT) |
commit | d41a98bdd9076eeadf4d3ba6d8db287e26b89777 (patch) | |
tree | 41e6908d7d713d1981060eded58e10c00098850c /Misc/NEWS | |
parent | f1ab47ebc4d6f6cdb0ea7f9ec73d874aae03a1f2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |