summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-10-13 11:38:14 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-10-13 11:38:14 (GMT)
commit72d6a13413d3dedf9979cfbd7bc41d58f52144b6 (patch)
treed7a85107c3913d65df3250c2e82109e8998fbd19 /Misc
parent55c991197b8dc971c1358b2b8e71fc9eaf3970c9 (diff)
parentd41a98bdd9076eeadf4d3ba6d8db287e26b89777 (diff)
downloadcpython-72d6a13413d3dedf9979cfbd7bc41d58f52144b6.zip
cpython-72d6a13413d3dedf9979cfbd7bc41d58f52144b6.tar.gz
cpython-72d6a13413d3dedf9979cfbd7bc41d58f52144b6.tar.bz2
Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one.
Also fix the bz2 module, which suffered from the same problem.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b0d973..63099ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1342,6 +1342,9 @@ Tools/Demos
Extension Modules
-----------------
+- Issue #13159: FileIO and BZ2Compressor/BZ2Decompressor now use a linear-time
+ buffer growth strategy instead of a quadratic-time one.
+
- Issue #10141: socket: Add SocketCAN (PF_CAN) support. Initial patch by
Matthias Fuchs, updated by Tiago Gonçalves.