Issue #27698: Add socketpair to socket.__all__ on Windows
diff --git a/Lib/socket.py b/Lib/socket.py
index ac2e3dd..6dddfe1 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -519,6 +519,7 @@
         finally:
             lsock.close()
         return (ssock, csock)
+    __all__.append("socketpair")
 
 socketpair.__doc__ = """socketpair([family[, type[, proto]]]) -> (socket object, socket object)
 Create a pair of socket objects from the sockets returned by the platform