diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 13:53:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 13:53:25 (GMT) |
commit | 67992b7732ed305f41465e3b43fda551e09d5345 (patch) | |
tree | e306bd19e2a8bc83c9d3ba06673583785df84996 /Mac/Modules | |
parent | 59c14e225498456d93924cc6b94c3366a2f65101 (diff) | |
download | cpython-67992b7732ed305f41465e3b43fda551e09d5345.zip cpython-67992b7732ed305f41465e3b43fda551e09d5345.tar.gz cpython-67992b7732ed305f41465e3b43fda551e09d5345.tar.bz2 |
Bit another bullet: all toolbox modules are now in dynamically loaded modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work.
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/macconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 62fa76b..8e577e3 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -80,6 +80,7 @@ extern void initerrno(); extern void initpcre(); extern void initunicodedata(); extern void init_codecs(); +extern void initNav(); #ifdef USE_MACCTB extern void initctb(); #endif @@ -120,7 +121,6 @@ extern void initMenu(); extern void initQd(); extern void initRes(); extern void initWin(); -extern void initNav(); #endif #ifdef USE_QT extern void initCm(); @@ -207,6 +207,7 @@ struct _inittab _PyImport_Inittab[] = { {"unicodedata", initunicodedata}, {"_codecs", init_codecs}, {"sha", initsha}, + {"Nav", initNav}, #ifdef USE_MACCTB {"ctb", initctb}, #endif @@ -228,7 +229,6 @@ struct _inittab _PyImport_Inittab[] = { {"Drag", initDrag}, {"Evt", initEvt}, {"Menu", initMenu}, - {"Nav", initNav}, {"Qd", initQd}, {"Win", initWin}, {"Res", initRes}, |