From: Guido van Rossum Date: Tue, 6 May 1997 15:59:14 +0000 (+0000) Subject: Added cStringIO and cPickle to the supported modules. X-Git-Tag: v1.5a1~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=42c2e6ac49b4cca039884eba0ae547e8dd52577a;p=python Added cStringIO and cPickle to the supported modules. --- diff --git a/PC/config.c b/PC/config.c index 0c34041be9..7014ccef8a 100644 --- a/PC/config.c +++ b/PC/config.c @@ -58,6 +58,8 @@ extern void initstrop(); extern void initstruct(); extern void inittime(); extern void initthread(); +extern void initcStringIO(); +extern void initcPickle(); /* -- ADDMODULE MARKER 1 -- */ @@ -94,6 +96,8 @@ struct _inittab _PyImport_Inittab[] = { #ifdef WITH_THREAD {"thread", initthread}, #endif + {"cStringIO", initcStringIO}, + {"cPickle", initcPickle}, /* -- ADDMODULE MARKER 2 -- */