]> granicus.if.org Git - python/commitdiff
Added unicodedata and _codecs modules (which had apparently slipped through until...
authorJack Jansen <jack.jansen@cwi.nl>
Fri, 12 May 2000 21:36:06 +0000 (21:36 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Fri, 12 May 2000 21:36:06 +0000 (21:36 +0000)
Mac/Modules/macconfig.c

index 862e768c3986e2f33a3ecb93e26b798273514c91..53067643c5336f202528ee7ce96688e4a56d75b3 100644 (file)
@@ -82,6 +82,8 @@ extern void initsoundex();
 extern void initoperator();
 extern void initerrno();
 extern void initpcre();
+extern void initunicodedata();
+extern void init_codecs();
 #ifdef THINK
 extern void initmacconsole();
 #endif
@@ -202,6 +204,8 @@ struct _inittab _PyImport_Inittab[] = {
        {"operator", initoperator},
        {"errno", initerrno},
        {"pcre", initpcre},
+       {"unicodedata", initunicodedata},
+       {"_codecs", init_codecs},
 #ifdef THINK_C
 /* This is an interface to the Think runtime */
        {"macconsole", initmacconsole},