summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-01-06 12:08:49 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-01-06 12:08:49 (GMT)
commitd9d2968de1bfba19ea2622bae79e51936f0d3b49 (patch)
treedd0d10670cfaaee662171745046b57bdaca74cff /Mac
parenta5e2ece7572e207726c72665439b772f70fc5fc1 (diff)
downloadcpython-d9d2968de1bfba19ea2622bae79e51936f0d3b49.zip
cpython-d9d2968de1bfba19ea2622bae79e51936f0d3b49.tar.gz
cpython-d9d2968de1bfba19ea2622bae79e51936f0d3b49.tar.bz2
Added cPickle and cStringIO
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c
index 1da0cd2..bb08aac 100644
--- a/Mac/Modules/config.c
+++ b/Mac/Modules/config.c
@@ -146,6 +146,10 @@ extern void initgdbm();
#ifdef USE_ZLIB
extern void initzlib();
#endif
+
+/* Testing: */
+extern void initcPickle();
+extern void initcStringIO();
/* -- ADDMODULE MARKER 1 -- */
extern void PyMarshal_Init();
@@ -249,6 +253,9 @@ struct _inittab _PyImport_Inittab[] = {
#ifdef USE_ZLIB
{"zlib", initzlib},
#endif
+/* Testing: */
+ {"cPickle", initcPickle},
+ {"cStringIO", initcStringIO},
/* -- ADDMODULE MARKER 2 -- */