Added sha module, it's needed by the unicode stuff, it seems.

This commit is contained in:
Jack Jansen 2000-10-12 21:24:24 +00:00
parent b19c667d94
commit 6433fdf1fe
1 changed files with 2 additions and 0 deletions

View 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