added ucnhash (optional on USE_UCNHASH) and the mysteriously disappeared math.

This commit is contained in:
Jack Jansen 2000-06-28 21:59:35 +00:00
parent e641ba1e6a
commit 0ed1148b75

View file

@ -161,6 +161,9 @@ extern void initcPickle();
extern void initcStringIO();
extern void init_codecs();
extern void init_locale();
#ifdef USE_UCNHASH
extern void initucnhash();
#endif
/* -- ADDMODULE MARKER 1 -- */
extern void PyMarshal_Init();
@ -169,6 +172,7 @@ extern void initimp();
struct _inittab _PyImport_Inittab[] = {
{"array", initarray},
{"math", initmath},
#ifndef WITHOUT_COMPLEX
{"cmath", initcmath},
#endif
@ -273,8 +277,10 @@ struct _inittab _PyImport_Inittab[] = {
#endif
{"cPickle", initcPickle},
{"cStringIO", initcStringIO},
{"_codecs", init_codecs},
{"_locale", init_locale},
#ifdef USE_UCNHASH
{"ucnhash", initucnhash},
#endif
/* -- ADDMODULE MARKER 2 -- */