]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added sha module, it's needed by the unicode stuff, it seems.
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 12 Oct 2000 21:24:24 +0000 (21:24 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 12 Oct 2000 21:24:24 +0000 (21:24 +0000)
Mac/Modules/macconfig.c

index 901bdb28541b307b195d58b2613821f3d05ea9dc..892f930d4b8a806c72298592b8fe0a96f74a1dc6 100644 (file)
@@ -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