Commit 42c2e6ac authored by Guido van Rossum's avatar Guido van Rossum

Added cStringIO and cPickle to the supported modules.

parent c339753f
......@@ -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 -- */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment