diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-03 22:29:56 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-03 22:29:56 (GMT) |
commit | 673ddf9907898d4483a2622699f588f0b58a5226 (patch) | |
tree | 287266052188ec70042e331f451c4675b803c4f4 /Misc | |
parent | 49d709c92143ba450ee2d3195bb3fa0505a0e88f (diff) | |
download | cpython-673ddf9907898d4483a2622699f588f0b58a5226.zip cpython-673ddf9907898d4483a2622699f588f0b58a5226.tar.gz cpython-673ddf9907898d4483a2622699f588f0b58a5226.tar.bz2 |
Issue #7471: Improve the performance of GzipFile's buffering mechanism,
and make it implement the `io.BufferedIOBase` ABC to allow for further
speedups by wrapping it in an `io.BufferedReader`. Patch by Nir Aides.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -62,7 +62,11 @@ Core and Builtins Library ------- -_ Issue #3972: httplib.HTTPConnection now accepts an optional source_address +- Issue #7471: Improve the performance of GzipFile's buffering mechanism, + and make it implement the `io.BufferedIOBase` ABC to allow for further + speedups by wrapping it in an `io.BufferedReader`. Patch by Nir Aides. + +- Issue #3972: httplib.HTTPConnection now accepts an optional source_address parameter to allow specifying where your connections come from. - socket.create_connection now accepts an optional source_address parameter. |