From: Benjamin Peterson Date: Mon, 6 Apr 2009 21:53:33 +0000 (+0000) Subject: add create_connection to __all__ #5711 X-Git-Tag: v2.7a1~1539 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a27e6e3d587881e501ef7de93f7a8a2afb5cbf00;p=thirdparty%2FPython%2Fcpython.git add create_connection to __all__ #5711 --- diff --git a/Lib/socket.py b/Lib/socket.py index 24ef3af3ff43..7b37e90aaee1 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -88,7 +88,7 @@ try: except ImportError: EBADF = 9 -__all__ = ["getfqdn"] +__all__ = ["getfqdn", "create_connection"] __all__.extend(os._get_exports_list(_socket))