summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2009-09-04 16:32:22 (GMT)
committerChris Withers <chris@simplistix.co.uk>2009-09-04 16:32:22 (GMT)
commit7f3ea6a5e554b803393d2c9ba2824e494d136503 (patch)
tree562343ee481b68d10f3e8854c0587a50727ac5bb /Misc
parent68c6e92fd4a51988377bfb868dbd100da1559087 (diff)
downloadcpython-7f3ea6a5e554b803393d2c9ba2824e494d136503.zip
cpython-7f3ea6a5e554b803393d2c9ba2824e494d136503.tar.gz
cpython-7f3ea6a5e554b803393d2c9ba2824e494d136503.tar.bz2
news entry matching r74655
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 b517b97..a5ea3be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -364,6 +364,11 @@ Core and Builtins
Library
-------
+- Issue #6838: Use a list to accumulate the value instead of
+ repeatedly concatenating strings in httplib's
+ HTTPResponse._read_chunked providing a significant speed increase
+ when downloading large files servend with a Transfer-Encoding of 'chunked'.
+
- Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments
as documented.