mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Added sha module, it's needed by the unicode stuff, it seems.
This commit is contained in:
parent
b19c667d94
commit
6433fdf1fe
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue