diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-25 16:28:00 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-25 16:28:00 (GMT) |
commit | 4ff2fe7ee11593f940ce17ef3ebd81f97707625b (patch) | |
tree | 4b6d5eeb4d664f9994f72edec2f2e39819417ca4 /Mac/Modules/macconfig.c | |
parent | 03d90149920274b58f6ab121caae81ae9c424946 (diff) | |
download | cpython-4ff2fe7ee11593f940ce17ef3ebd81f97707625b.zip cpython-4ff2fe7ee11593f940ce17ef3ebd81f97707625b.tar.gz cpython-4ff2fe7ee11593f940ce17ef3ebd81f97707625b.tar.bz2 |
ucnhash module has gone, xreadlines module added.
Diffstat (limited to 'Mac/Modules/macconfig.c')
-rw-r--r-- | Mac/Modules/macconfig.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index d3b50b2..8624fd2 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -169,10 +169,8 @@ extern void initcStringIO(); extern void init_codecs(); extern void initsha(); extern void init_locale(); -#ifdef USE_UCNHASH -extern void initucnhash(); -#endif extern void init_sre(); +extern void initxreadlines(); /* -- ADDMODULE MARKER 1 -- */ extern void PyMarshal_Init(); @@ -295,10 +293,8 @@ struct _inittab _PyImport_Inittab[] = { {"cPickle", initcPickle}, {"cStringIO", initcStringIO}, {"_locale", init_locale}, -#ifdef USE_UCNHASH - {"ucnhash", initucnhash}, -#endif {"_sre", init_sre}, + {"xreadlines", initxreadlines}, /* -- ADDMODULE MARKER 2 -- */ /* This module "lives in" with marshal.c */ |