]> granicus.if.org Git - python/commitdiff
Added cStringIO and cPickle to the supported modules.
authorGuido van Rossum <guido@python.org>
Tue, 6 May 1997 15:59:14 +0000 (15:59 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 6 May 1997 15:59:14 +0000 (15:59 +0000)
PC/config.c

index 0c34041be9dc5eae668dc8e5d22978cf98224621..7014ccef8a21dab674b7f11abb532e296795e4c4 100644 (file)
@@ -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 -- */