diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-12 21:36:06 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-12 21:36:06 (GMT) |
commit | 48b486b0540d36cbd27d4bb8b5fe0c3f5cc4254e (patch) | |
tree | 33d31eba1897b16f607f6e4460374c4732bc36b7 /Mac | |
parent | 092580baa94bf2528c7bc5434f43e708f22fcd5c (diff) | |
download | cpython-48b486b0540d36cbd27d4bb8b5fe0c3f5cc4254e.zip cpython-48b486b0540d36cbd27d4bb8b5fe0c3f5cc4254e.tar.gz cpython-48b486b0540d36cbd27d4bb8b5fe0c3f5cc4254e.tar.bz2 |
Added unicodedata and _codecs modules (which had apparently slipped through until now).
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/macconfig.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 862e768..5306764 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -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}, |