diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1997-10-07 21:48:57 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-10-07 21:48:57 +0000 |
| commit | a7a89ebdbee000c6d2d03b1f17ce916bbe797a40 (patch) | |
| tree | c093cc5398be552ac4e1270612e3ce296cca3c7b | |
| parent | c73f83c8d9427404576cd2f88bf665cf65de67f3 (diff) | |
| download | cpython-git-a7a89ebdbee000c6d2d03b1f17ce916bbe797a40.tar.gz | |
Implemented nositepython and oldexceptions flags
| -rw-r--r-- | Mac/Python/macmain.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 9f779f2074..8fac6f0c1a 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -242,6 +242,8 @@ init_common(int *argcp, char ***argvp, int embedded) /* Py_SuppressPrintingFlag = options.suppress_print; */ Py_OptimizeFlag = options.optimize; Py_DebugFlag = options.debugging; + Py_NoSiteFlag = options.nosite; + Py_UseClassExceptionsFlag = !(options.oldexc); if ( options.noargs ) { /* don't process events at all without the scripts permission */ PyMacSchedParams scp; |
