From: Guido van Rossum Date: Mon, 1 Jul 1991 18:45:17 +0000 (+0000) Subject: Support socket module X-Git-Tag: v0.9.8~879 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49955ae3607fd822a963217ae53df49917bc83ad;p=thirdparty%2FPython%2Fcpython.git Support socket module --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 97c334886742..96e93c956a10 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -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 */ };