From: Jack Jansen Date: Fri, 12 May 2000 21:36:06 +0000 (+0000) Subject: Added unicodedata and _codecs modules (which had apparently slipped through until... X-Git-Tag: v2.0b1~1746 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48b486b0540d36cbd27d4bb8b5fe0c3f5cc4254e;p=thirdparty%2FPython%2Fcpython.git Added unicodedata and _codecs modules (which had apparently slipped through until now). --- diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 862e768c3986..53067643c533 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},