Merged revisions 71329 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71329 | benjamin.peterson | 2009-04-06 16:53:33 -0500 (Mon, 06 Apr 2009) | 1 line

  add create_connection to __all__ #5711
........
diff --git a/Lib/socket.py b/Lib/socket.py
index 24ef3af..7b37e90 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -88,7 +88,7 @@
 except ImportError:
     EBADF = 9
 
-__all__ = ["getfqdn"]
+__all__ = ["getfqdn", "create_connection"]
 __all__.extend(os._get_exports_list(_socket))