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))