diff options
author | Guido van Rossum <guido@python.org> | 1995-01-25 23:10:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-25 23:10:10 (GMT) |
commit | c9a35694167f4ee65454f0dfa8c662ddcd342bfd (patch) | |
tree | 600d85a708db5abbf7f7a59b192c1de1b049d4af | |
parent | bf068b15059b3679b12589597691a52e87d2cd5e (diff) | |
download | cpython-c9a35694167f4ee65454f0dfa8c662ddcd342bfd.zip cpython-c9a35694167f4ee65454f0dfa8c662ddcd342bfd.tar.gz cpython-c9a35694167f4ee65454f0dfa8c662ddcd342bfd.tar.bz2 |
split PATH over multiple lines for clarity;
added some generated modules
-rw-r--r-- | Mac/Modules/config.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 4a410c4..098ff4f 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -107,7 +107,7 @@ getversion() char * getcopyright() { - return "Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam"; + return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam"; } @@ -118,6 +118,13 @@ getcopyright() default path is always returned.) The default path may be passed to the preprocessor; if not, a system-dependent default is used. */ +#define PYTHONPATH "\ +:\n\ +:Lib\n\ +:Lib:stdwin\n\ +:Lib:test\n\ +:Lib:mac" + #ifndef PYTHONPATH #ifdef macintosh /* Mod by Jack: \n is now separator. */ @@ -268,7 +275,13 @@ extern void initmacspeech(); extern void initmacdnr(); extern void initmactcp(); extern void initAE(); +extern void initCtl(); +extern void initDlg(); +extern void initEvt(); +extern void initMenu(); extern void initRes(); +extern void initSnd(); +extern void initWin(); /* -- ADDMODULE MARKER 1 -- */ @@ -312,7 +325,13 @@ struct { #ifdef THINK_C /* This is really "Guido van Rossum" specific... :-) */ {"AE", initAE}, + {"Ctl", initCtl}, + {"Dlg", initDlg}, + {"Evt", initEvt}, + {"Menu", initMenu}, {"Res", initRes}, + {"Snd", initSnd}, + {"Win", initWin}, #endif /* -- ADDMODULE MARKER 2 -- */ |