diff options
author | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 17:15:46 (GMT) |
---|---|---|
committer | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 17:15:46 (GMT) |
commit | 5a86acb6d643dd798673dbc59f314952a4514b17 (patch) | |
tree | 5415ef0643fb7094cc82eff36b304e8f443e3616 /Misc | |
parent | 04ee867b6dbe0c5002cb5ee45866e8ad73cb636a (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |