Adds an optional source_address parameter to socket.create_connection().

For use by issue3972.
This commit is contained in:
Gregory P. Smith 2010-01-03 01:29:44 +00:00
parent 7f8ebdbad5
commit 79a3eb1058
4 changed files with 32 additions and 5 deletions

View file

@ -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.