summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-06-28 21:59:35 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-06-28 21:59:35 (GMT)
commit0ed1148b75de3ab7b969cc22c35bdb6273992954 (patch)
tree43a83fb78d6fbbef0c097871ee75b4fc5029f824 /Mac
parente641ba1e6a4918955bcceb07a8e7c57662a79653 (diff)
downloadcpython-0ed1148b75de3ab7b969cc22c35bdb6273992954.zip
cpython-0ed1148b75de3ab7b969cc22c35bdb6273992954.tar.gz
cpython-0ed1148b75de3ab7b969cc22c35bdb6273992954.tar.bz2
added ucnhash (optional on USE_UCNHASH) and the mysteriously disappeared math.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/macconfig.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c
index 88d75df..3bbb426 100644
--- a/Mac/Modules/macconfig.c
+++ b/Mac/Modules/macconfig.c
@@ -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 -- */