From: Jack Jansen Date: Thu, 12 Oct 2000 21:24:24 +0000 (+0000) Subject: Added sha module, it's needed by the unicode stuff, it seems. X-Git-Tag: v2.0~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6433fdf1fe1e8b803bc785230e13c6959e2fdb1d;p=thirdparty%2FPython%2Fcpython.git Added sha module, it's needed by the unicode stuff, it seems. --- diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 901bdb28541b..892f930d4b8a 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -167,6 +167,7 @@ extern void initpyexpat(); extern void initcPickle(); extern void initcStringIO(); extern void init_codecs(); +extern void initsha(); extern void init_locale(); #ifdef USE_UCNHASH extern void initucnhash(); @@ -206,6 +207,7 @@ struct _inittab _PyImport_Inittab[] = { {"pcre", initpcre}, {"unicodedata", initunicodedata}, {"_codecs", init_codecs}, + {"sha", initsha}, #ifdef USE_MACCTB {"ctb", initctb}, #endif