| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							|  |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Python interpreter main program */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | #include "osdefs.h"
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-09 18:46:58 +00:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-17 22:05:38 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | #if defined(PYOS_OS2) || defined(MS_WINDOWS)
 | 
					
						
							|  |  |  | #define PYTHONHOMEHELP "<prefix>\\lib"
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define PYTHONHOMEHELP "<prefix>/python1.5"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | /* Interface to getopt(): */ | 
					
						
							|  |  |  | extern int optind; | 
					
						
							|  |  |  | extern char *optarg; | 
					
						
							|  |  |  | extern int getopt(); /* PROTO((int, char **, char *)); -- not standardized */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:38 +00:00
										 |  |  | /* For Py_GetArgcArgv(); set by main() */ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | static char **orig_argv; | 
					
						
							|  |  |  | static int  orig_argc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Short usage message (with %s for argv0) */ | 
					
						
							|  |  |  | static char *usage_line = | 
					
						
							| 
									
										
										
										
											1999-01-28 15:07:47 +00:00
										 |  |  | "usage: %s [option] ... [-c cmd | file | -] [arg] ...\n"; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Long usage message, split into parts < 512 bytes */ | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | static char *usage_top = "\
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | Options and arguments (and corresponding environment variables):\n\ | 
					
						
							|  |  |  | -d     : debug output from parser (also PYTHONDEBUG=x)\n\ | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | -i     : inspect interactively after running script, (also PYTHONINSPECT=x)\n\ | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  |          and force prompts, even if stdin does not appear to be a terminal\n\ | 
					
						
							| 
									
										
										
										
											1998-10-07 14:50:06 +00:00
										 |  |  | -O     : optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)\n\ | 
					
						
							| 
									
										
										
										
											1999-01-28 15:07:47 +00:00
										 |  |  | -OO    : remove doc-strings in addition to the -O optimizations\n\ | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | -S     : don't imply 'import site' on initialization\n\ | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  | -t     : issue warnings about inconsistent tab usage (-tt: issue errors)\n\ | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | "; | 
					
						
							|  |  |  | static char *usage_mid = "\
 | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  | -u     : unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x)\n\ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | -v     : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\ | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | -x     : skip first line of source, allowing use of non-Unix forms of #!cmd\n\ | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | -X     : disable class based built-in exceptions\n\ | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | -c cmd : program passed in as string (terminates option list)\n\ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | file   : program read from script file\n\ | 
					
						
							|  |  |  | -      : program read from stdin (default; interactive mode if a tty)\n\ | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | "; | 
					
						
							|  |  |  | static char *usage_bot = "\
 | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  | arg ...: arguments passed to program in sys.argv[1:]\n\ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | Other environment variables:\n\ | 
					
						
							|  |  |  | PYTHONSTARTUP: file executed on interactive startup (no default)\n\ | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | PYTHONPATH   : '%c'-separated list of directories prefixed to the\n\ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  |                default module search path.  The result is sys.path.\n\ | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | PYTHONHOME   : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\ | 
					
						
							|  |  |  |                The default module search path uses %s.\n\ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | "; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Main program */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-07 14:28:47 +00:00
										 |  |  | DL_EXPORT(int) | 
					
						
							| 
									
										
										
										
											1997-07-19 19:20:32 +00:00
										 |  |  | Py_Main(argc, argv) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	int argc; | 
					
						
							|  |  |  | 	char **argv; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int c; | 
					
						
							|  |  |  | 	int sts; | 
					
						
							|  |  |  | 	char *command = NULL; | 
					
						
							|  |  |  | 	char *filename = NULL; | 
					
						
							|  |  |  | 	FILE *fp = stdin; | 
					
						
							|  |  |  | 	char *p; | 
					
						
							|  |  |  | 	int inspect = 0; | 
					
						
							|  |  |  | 	int unbuffered = 0; | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | 	int skipfirstline = 0; | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 	int stdin_is_interactive = 0; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:38 +00:00
										 |  |  | 	orig_argc = argc;	/* For Py_GetArgcArgv() */ | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	orig_argv = argv; | 
					
						
							| 
									
										
										
										
											1997-07-19 19:20:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	if ((p = getenv("PYTHONINSPECT")) && *p != '\0') | 
					
						
							|  |  |  | 		inspect = 1; | 
					
						
							|  |  |  | 	if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0') | 
					
						
							|  |  |  | 		unbuffered = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  | 	while ((c = getopt(argc, argv, "c:diOStuvxX")) != EOF) { | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		if (c == 'c') { | 
					
						
							|  |  |  | 			/* -c is the last option; following arguments
 | 
					
						
							|  |  |  | 			   that look like options are left for the | 
					
						
							|  |  |  | 			   the command to interpret. */ | 
					
						
							|  |  |  | 			command = malloc(strlen(optarg) + 2); | 
					
						
							|  |  |  | 			if (command == NULL) | 
					
						
							|  |  |  | 				Py_FatalError( | 
					
						
							|  |  |  | 				   "not enough memory to copy -c argument"); | 
					
						
							|  |  |  | 			strcpy(command, optarg); | 
					
						
							|  |  |  | 			strcat(command, "\n"); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		switch (c) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'd': | 
					
						
							|  |  |  | 			Py_DebugFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'i': | 
					
						
							|  |  |  | 			inspect++; | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 			Py_InteractiveFlag++; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-03-03 19:14:45 +00:00
										 |  |  | 		case 'O': | 
					
						
							|  |  |  | 			Py_OptimizeFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | 		case 'S': | 
					
						
							|  |  |  | 			Py_NoSiteFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-10 19:39:15 +00:00
										 |  |  | 		case 't': | 
					
						
							|  |  |  | 			Py_TabcheckFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		case 'u': | 
					
						
							|  |  |  | 			unbuffered++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'v': | 
					
						
							|  |  |  | 			Py_VerboseFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | 		case 'x': | 
					
						
							|  |  |  | 			skipfirstline = 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-29 21:57:49 +00:00
										 |  |  | 		case 'X': | 
					
						
							| 
									
										
										
										
											1997-08-29 22:20:16 +00:00
										 |  |  | 			Py_UseClassExceptionsFlag = 0; | 
					
						
							| 
									
										
										
										
											1997-08-29 21:57:49 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		/* This space reserved for other options */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			fprintf(stderr, usage_line, argv[0]); | 
					
						
							|  |  |  | 			fprintf(stderr, usage_top); | 
					
						
							| 
									
										
										
										
											1997-08-29 22:34:47 +00:00
										 |  |  | 			fprintf(stderr, usage_mid); | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | 			fprintf(stderr, usage_bot, | 
					
						
							|  |  |  | 				DELIM, DELIM, PYTHONHOMEHELP); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			exit(2); | 
					
						
							|  |  |  | 			/*NOTREACHED*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 	if (command == NULL && optind < argc && | 
					
						
							|  |  |  | 	    strcmp(argv[optind], "-") != 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		filename = argv[optind]; | 
					
						
							|  |  |  | 		if (filename != NULL) { | 
					
						
							|  |  |  | 			if ((fp = fopen(filename, "r")) == NULL) { | 
					
						
							|  |  |  | 				fprintf(stderr, "%s: can't open file '%s'\n", | 
					
						
							|  |  |  | 					argv[0], filename); | 
					
						
							|  |  |  | 				exit(2); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | 			else if (skipfirstline) { | 
					
						
							|  |  |  | 				char line[256]; | 
					
						
							|  |  |  | 				fgets(line, sizeof line, fp); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	if (unbuffered) { | 
					
						
							| 
									
										
										
										
											1997-01-11 19:28:55 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1997-01-17 22:05:38 +00:00
										 |  |  | 		_setmode(fileno(stdin), O_BINARY); | 
					
						
							|  |  |  | 		_setmode(fileno(stdout), O_BINARY); | 
					
						
							| 
									
										
										
										
											1997-01-11 19:28:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | #ifndef MPW
 | 
					
						
							| 
									
										
										
										
											1998-03-06 15:30:39 +00:00
										 |  |  | #ifdef HAVE_SETVBUF
 | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		setvbuf(stdin,  (char *)NULL, _IONBF, BUFSIZ); | 
					
						
							|  |  |  | 		setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); | 
					
						
							|  |  |  | 		setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ); | 
					
						
							| 
									
										
										
										
											1998-03-06 15:30:39 +00:00
										 |  |  | #else /* !HAVE_SETVBUF */
 | 
					
						
							|  |  |  | 		setbuf(stdin,  (char *)NULL); | 
					
						
							|  |  |  | 		setbuf(stdout, (char *)NULL); | 
					
						
							|  |  |  | 		setbuf(stderr, (char *)NULL); | 
					
						
							|  |  |  | #endif /* !HAVE_SETVBUF */
 | 
					
						
							|  |  |  | #else /* MPW */
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		/* On MPW (3.2) unbuffered seems to hang */ | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		setvbuf(stdin,  (char *)NULL, _IOLBF, BUFSIZ); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ); | 
					
						
							|  |  |  | 		setvbuf(stderr, (char *)NULL, _IOLBF, BUFSIZ); | 
					
						
							| 
									
										
										
										
											1998-03-06 15:30:39 +00:00
										 |  |  | #endif /* MPW */
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-04-11 21:57:53 +00:00
										 |  |  | 	else if (Py_InteractiveFlag) { | 
					
						
							| 
									
										
										
										
											1997-04-11 22:19:12 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  | 		/* Doesn't have to have line-buffered -- use unbuffered */ | 
					
						
							| 
									
										
										
										
											1999-02-09 18:36:51 +00:00
										 |  |  | 		/* Any set[v]buf(stdin, ...) screws up Tkinter :-( */ | 
					
						
							| 
									
										
										
										
											1997-04-11 22:19:12 +00:00
										 |  |  | 		setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); | 
					
						
							| 
									
										
										
										
											1998-03-06 15:30:39 +00:00
										 |  |  | #else /* !MS_WINDOWS */
 | 
					
						
							|  |  |  | #ifdef HAVE_SETVBUF
 | 
					
						
							| 
									
										
										
										
											1997-04-11 22:19:12 +00:00
										 |  |  | 		setvbuf(stdin,  (char *)NULL, _IOLBF, BUFSIZ); | 
					
						
							|  |  |  | 		setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ); | 
					
						
							| 
									
										
										
										
											1998-03-06 15:30:39 +00:00
										 |  |  | #endif /* HAVE_SETVBUF */
 | 
					
						
							|  |  |  | #endif /* !MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		/* Leave stderr alone - it should be unbuffered anyway. */ | 
					
						
							|  |  |  |   	} | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-19 19:20:32 +00:00
										 |  |  | 	Py_SetProgramName(argv[0]); | 
					
						
							|  |  |  | 	Py_Initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	if (Py_VerboseFlag || | 
					
						
							| 
									
										
										
										
											1997-02-14 21:00:50 +00:00
										 |  |  | 	    (command == NULL && filename == NULL && stdin_is_interactive)) | 
					
						
							| 
									
										
										
										
											1997-05-19 18:33:01 +00:00
										 |  |  | 		fprintf(stderr, "Python %s on %s\n%s\n", | 
					
						
							|  |  |  | 			Py_GetVersion(), Py_GetPlatform(), Py_GetCopyright()); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (command != NULL) { | 
					
						
							|  |  |  | 		/* Backup optind and force sys.argv[0] = '-c' */ | 
					
						
							|  |  |  | 		optind--; | 
					
						
							|  |  |  | 		argv[optind] = "-c"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PySys_SetArgv(argc-optind, argv+optind); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-16 16:11:28 +00:00
										 |  |  | 	if ((inspect || (command == NULL && filename == NULL)) && | 
					
						
							|  |  |  | 	    isatty(fileno(stdin))) { | 
					
						
							|  |  |  | 		PyObject *v; | 
					
						
							|  |  |  | 		v = PyImport_ImportModule("readline"); | 
					
						
							|  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  | 			PyErr_Clear(); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			Py_DECREF(v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	if (command) { | 
					
						
							|  |  |  | 		sts = PyRun_SimpleString(command) != 0; | 
					
						
							| 
									
										
										
										
											1997-08-02 03:00:42 +00:00
										 |  |  | 		free(command); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		if (filename == NULL && stdin_is_interactive) { | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			char *startup = getenv("PYTHONSTARTUP"); | 
					
						
							|  |  |  | 			if (startup != NULL && startup[0] != '\0') { | 
					
						
							|  |  |  | 				FILE *fp = fopen(startup, "r"); | 
					
						
							|  |  |  | 				if (fp != NULL) { | 
					
						
							|  |  |  | 					(void) PyRun_SimpleFile(fp, startup); | 
					
						
							|  |  |  | 					PyErr_Clear(); | 
					
						
							|  |  |  | 					fclose(fp); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sts = PyRun_AnyFile( | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 			fp, | 
					
						
							|  |  |  | 			filename == NULL ? "<stdin>" : filename) != 0; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		if (filename != NULL) | 
					
						
							|  |  |  | 			fclose(fp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 	if (inspect && stdin_is_interactive && | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	    (filename != NULL || command != NULL)) | 
					
						
							|  |  |  | 		sts = PyRun_AnyFile(stdin, "<stdin>") != 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-05 02:23:48 +00:00
										 |  |  | 	Py_Finalize(); | 
					
						
							| 
									
										
										
										
											1997-08-02 03:00:42 +00:00
										 |  |  | 	return sts; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Make the *original* argc/argv available to other modules.
 | 
					
						
							|  |  |  |    This is rare, but it is needed by the secureware extension. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1996-07-21 02:33:38 +00:00
										 |  |  | Py_GetArgcArgv(argc, argv) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	int *argc; | 
					
						
							|  |  |  | 	char ***argv; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	*argc = orig_argc; | 
					
						
							|  |  |  | 	*argv = orig_argv; | 
					
						
							|  |  |  | } |