diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-08-08 14:56:41 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-08-08 14:56:41 (GMT) |
commit | 7330b39a41539f5bfaed40fb6529f1662008ae1c (patch) | |
tree | 9fad8a7ba19a32c258156cf58c65e905c55cd936 /Mac/Python/macmain.c | |
parent | 4be0ce3bc6a138c1be3af50c5aba252c45b940c6 (diff) | |
download | cpython-7330b39a41539f5bfaed40fb6529f1662008ae1c.zip cpython-7330b39a41539f5bfaed40fb6529f1662008ae1c.tar.gz cpython-7330b39a41539f5bfaed40fb6529f1662008ae1c.tar.bz2 |
Adapted for 1.5a3: Py_SupressPrintingFlag is gone, and
Py_SetProgramName replaces Py_GetProgramName
Diffstat (limited to 'Mac/Python/macmain.c')
-rw-r--r-- | Mac/Python/macmain.c | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 49563a3..04dc9b9 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -53,15 +53,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */ extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */ -extern int Py_SuppressPrintingFlag; /* For ceval.c, declared in pythonrun.c */ short PyMac_AppRefNum; /* RefNum of application resource fork */ - -/* Subroutines that live in their own file */ -extern char *Py_GetVersion Py_PROTO((void)); -extern char *Py_GetCopyright Py_PROTO((void)); - - /* For Py_GetArgcArgv(); set by main() */ static char **orig_argv; static int orig_argc; @@ -131,7 +124,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) SET_OPT_ITEM(OPT_INSPECT, inspect); SET_OPT_ITEM(OPT_VERBOSE, verbose); - SET_OPT_ITEM(OPT_SUPPRESS, suppress_print); +/* SET_OPT_ITEM(OPT_SUPPRESS, suppress_print); */ SET_OPT_ITEM(OPT_UNBUFFERED, unbuffered); SET_OPT_ITEM(OPT_DEBUGGING, debugging); SET_OPT_ITEM(OPT_KEEPNORMAL, keep_normal); @@ -176,7 +169,7 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp) OPT_ITEM(OPT_INSPECT, inspect); OPT_ITEM(OPT_VERBOSE, verbose); - OPT_ITEM(OPT_SUPPRESS, suppress_print); +/* OPT_ITEM(OPT_SUPPRESS, suppress_print); */ OPT_ITEM(OPT_UNBUFFERED, unbuffered); OPT_ITEM(OPT_DEBUGGING, debugging); OPT_ITEM(OPT_KEEPNORMAL, keep_normal); @@ -239,7 +232,7 @@ init_common(int *argcp, char ***argvp, int embedded) /* Copy selected options to where the machine-independent stuff wants it */ Py_VerboseFlag = options.verbose; - Py_SuppressPrintingFlag = options.suppress_print; +/* Py_SuppressPrintingFlag = options.suppress_print; */ Py_DebugFlag = options.debugging; if ( options.noargs ) { /* don't process events at all without the scripts permission */ @@ -266,6 +259,11 @@ init_common(int *argcp, char ***argvp, int embedded) /* collectSummary or collectDetailed, timebase, #routines, max stack depth */ ProfilerInit(collectSummary, bestTimeBase, 2000, 150); #endif + + /* Tell the rest of python about our argc/argv */ + orig_argc = *argcp; /* For Py_GetArgcArgv() */ + orig_argv = *argvp; + Py_SetProgramName((*argvp)[0]); } /* @@ -396,8 +394,6 @@ Py_Main(argc, argv) char *filename = NULL; FILE *fp = stdin; - orig_argc = argc; /* For Py_GetArgcArgv() */ - orig_argv = argv; filename = argv[1]; if (Py_VerboseFlag || @@ -483,18 +479,10 @@ PyMac_Exit(status) } /* Return the program name -- some code out there needs this. */ - -char * -Py_GetProgramName() -{ - return orig_argv[0]; -} - -/* The same, but used differently */ char * Py_GetProgramFullPath() { - return Py_GetProgramName(); + return orig_argv[0]; } |