summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-10-12 21:24:24 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-10-12 21:24:24 (GMT)
commit6433fdf1fe1e8b803bc785230e13c6959e2fdb1d (patch)
treec5cd3c4e72ecc901c5c8b7f6144bb3c6398f90b8 /Mac
parentb19c667d944fb89ac3f0cd98397294756b6f95ad (diff)
downloadcpython-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')
-rw-r--r--Mac/Modules/macconfig.c2
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