From: Jack Jansen Date: Tue, 7 Oct 1997 21:48:57 +0000 (+0000) Subject: Implemented nositepython and oldexceptions flags X-Git-Tag: v1.5a4~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7a89ebdbee000c6d2d03b1f17ce916bbe797a40;p=python Implemented nositepython and oldexceptions flags --- 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;