diff options
author | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 17:04:16 (GMT) |
---|---|---|
committer | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 17:04:16 (GMT) |
commit | 9c33cbfbef5858e83a0079e89d81ae6fb15fc360 (patch) | |
tree | 6f9ad05cceced3e80d2b77b3a9f31452df01110c /Misc | |
parent | 9338585791e56cb09fff1d48f21258191b085c8d (diff) | |
download | cpython-9c33cbfbef5858e83a0079e89d81ae6fb15fc360.zip cpython-9c33cbfbef5858e83a0079e89d81ae6fb15fc360.tar.gz cpython-9c33cbfbef5858e83a0079e89d81ae6fb15fc360.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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -68,6 +68,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'. + - Trying to import a submodule from a module that is not a package, ImportError should be raised, not AttributeError. |