summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-03 22:29:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-03 22:29:56 (GMT)
commit673ddf9907898d4483a2622699f588f0b58a5226 (patch)
tree287266052188ec70042e331f451c4675b803c4f4 /Misc
parent49d709c92143ba450ee2d3195bb3fa0505a0e88f (diff)
downloadcpython-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/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 92fc9c9..cb39331 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.