Commit a0ec5ded authored by Just van Rossum's avatar Just van Rossum

Added support for the gc module (!).

parent 78c87a10
......@@ -162,6 +162,9 @@ extern void initthread();
#ifdef USE_PYEXPAT
extern void initpyexpat();
#endif
#ifdef WITH_CYCLE_GC
extern void initgc();
#endif
extern void initcPickle();
extern void initcStringIO();
......@@ -285,6 +288,9 @@ struct _inittab _PyImport_Inittab[] = {
#endif
#ifdef USE_PYEXPAT
{"pyexpat", initpyexpat},
#endif
#ifdef WITH_CYCLE_GC
{"gc", initgc},
#endif
{"cPickle", initcPickle},
{"cStringIO", initcStringIO},
......
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