summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-01-03 02:06:07 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-01-03 02:06:07 (GMT)
commit9d3252154f99c8f229e12e4146ae322abf042450 (patch)
treed406bfc6480798852edd68de7741f45561da2e71 /Misc
parent79a3eb1058057185cb901b0f5f67fea05494e1fb (diff)
downloadcpython-9d3252154f99c8f229e12e4146ae322abf042450.zip
cpython-9d3252154f99c8f229e12e4146ae322abf042450.tar.gz
cpython-9d3252154f99c8f229e12e4146ae322abf042450.tar.bz2
issue3972: HTTPConnection and HTTPSConnection now support a
source_address parameter. Also cleans up an annotation in the socket documentation.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5f9322d..92fc9c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,9 @@ Core and Builtins
Library
-------
+_ 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.
- Issue #5511: now zipfile.ZipFile can be used as a context manager.