summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-01-03 01:29:44 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-01-03 01:29:44 (GMT)
commit79a3eb1058057185cb901b0f5f67fea05494e1fb (patch)
tree09456d423e27dfe76cf46079f944ae877f16e492 /Misc
parent7f8ebdbad54015074c71786abbfa7ea74fe69c56 (diff)
downloadcpython-79a3eb1058057185cb901b0f5f67fea05494e1fb.zip
cpython-79a3eb1058057185cb901b0f5f67fea05494e1fb.tar.gz
cpython-79a3eb1058057185cb901b0f5f67fea05494e1fb.tar.bz2
Adds an optional source_address parameter to socket.create_connection().
For use by issue3972.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 19b9d13..5f9322d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,8 @@ Core and Builtins
Library
-------
+- socket.create_connection now accepts an optional source_address parameter.
+
- Issue #5511: now zipfile.ZipFile can be used as a context manager.
Initial patch by Brian Curtin.