From 6433fdf1fe1e8b803bc785230e13c6959e2fdb1d Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 12 Oct 2000 21:24:24 +0000 Subject: [PATCH] Added sha module, it's needed by the unicode stuff, it seems. --- Mac/Modules/macconfig.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 901bdb28541..892f930d4b8 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