summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2009-09-04 17:15:46 (GMT)
committerChris Withers <chris@simplistix.co.uk>2009-09-04 17:15:46 (GMT)
commit5a86acb6d643dd798673dbc59f314952a4514b17 (patch)
tree5415ef0643fb7094cc82eff36b304e8f443e3616 /Misc
parent04ee867b6dbe0c5002cb5ee45866e8ad73cb636a (diff)
downloadcpython-5a86acb6d643dd798673dbc59f314952a4514b17.zip
cpython-5a86acb6d643dd798673dbc59f314952a4514b17.tar.gz
cpython-5a86acb6d643dd798673dbc59f314952a4514b17.tar.bz2
Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 000f2c7..80c636f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,11 @@ C-API
Library
-------
+- Issue #6838: Use a list to accumulate the value instead of
+ repeatedly concatenating strings in http.client's
+ HTTPResponse._read_chunked providing a significant speed increase
+ when downloading large files servend with a Transfer-Encoding of 'chunked'.
+
- Have importlib raise ImportError if None is found in sys.modules for a
module.