diff options
author | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 16:51:16 (GMT) |
---|---|---|
committer | Chris Withers <chris@simplistix.co.uk> | 2009-09-04 16:51:16 (GMT) |
commit | 49148cf5287e34a399ecfc1958d62d2d83339f64 (patch) | |
tree | 254565db9a2dc22f7a45a49c74f8b04b8381d8a7 /Misc | |
parent | cf4a7027446cd66909a025c2901712aadf501dd9 (diff) | |
download | cpython-49148cf5287e34a399ecfc1958d62d2d83339f64.zip cpython-49148cf5287e34a399ecfc1958d62d2d83339f64.tar.gz cpython-49148cf5287e34a399ecfc1958d62d2d83339f64.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
@@ -72,6 +72,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 #6794: Fix Decimal.compare_total and Decimal.compare_total_mag: NaN payloads are now ordered by integer value rather than lexicographically. |