]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Support socket module
authorGuido van Rossum <guido@python.org>
Mon, 1 Jul 1991 18:45:17 +0000 (18:45 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 1 Jul 1991 18:45:17 +0000 (18:45 +0000)
Modules/config.c.in

index 97c334886742868aa0253477a60891c8e81e7000..96e93c956a10222cdcb91d1bb07a82d3a394363c 100644 (file)
@@ -103,6 +103,9 @@ extern void initpanel();
 #ifdef USE_STDWIN
 extern void initstdwin();
 #endif
+#ifdef USE_SOCKET
+extern void initsocket();
+#endif
 
 struct {
        char *name;
@@ -144,5 +147,9 @@ struct {
        {"stdwin",      initstdwin},
 #endif
 
+#ifdef USE_SOCKET
+       {"socket",      initsocket},
+#endif
+
        {0,             0}              /* Sentinel */
 };