summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-07-01 18:45:17 (GMT)
committerGuido van Rossum <guido@python.org>1991-07-01 18:45:17 (GMT)
commit49955ae3607fd822a963217ae53df49917bc83ad (patch)
tree7b6653cc77c2b968609d2d3ecca04443aa3ffe31 /Modules
parentefc0bd02e5a661ede3737ff1d051973166425514 (diff)
downloadcpython-49955ae3607fd822a963217ae53df49917bc83ad.zip
cpython-49955ae3607fd822a963217ae53df49917bc83ad.tar.gz
cpython-49955ae3607fd822a963217ae53df49917bc83ad.tar.bz2
Support socket module
Diffstat (limited to 'Modules')
-rw-r--r--Modules/config.c.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 97c3348..96e93c9 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 */
};