diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-10-12 21:24:24 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-10-12 21:24:24 (GMT) |
commit | 6433fdf1fe1e8b803bc785230e13c6959e2fdb1d (patch) | |
tree | c5cd3c4e72ecc901c5c8b7f6144bb3c6398f90b8 /Mac/Modules/macconfig.c | |
parent | b19c667d944fb89ac3f0cd98397294756b6f95ad (diff) | |
download | cpython-6433fdf1fe1e8b803bc785230e13c6959e2fdb1d.zip cpython-6433fdf1fe1e8b803bc785230e13c6959e2fdb1d.tar.gz cpython-6433fdf1fe1e8b803bc785230e13c6959e2fdb1d.tar.bz2 |
Added sha module, it's needed by the unicode stuff, it seems.
Diffstat (limited to 'Mac/Modules/macconfig.c')
-rw-r--r-- | Mac/Modules/macconfig.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 901bdb2..892f930 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 |