| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2000-07-09 20:42:34 +00:00
										 |  |  | #define PYTHONHOMEHELP "<prefix>/python2.0"
 | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | #include "pygetopt.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-05 04:41:18 +00:00
										 |  |  | #define COPYRIGHT \
 | 
					
						
							|  |  |  |     "Type \"copyright\", \"credits\" or \"license\" for more information." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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\ | 
					
						
							| 
									
										
										
										
											2000-05-01 17:54:33 +00:00
										 |  |  | -U     : Unicode literals: treats '...' literals like u'...'\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\ | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | -h     : print this help message and exit\n\ | 
					
						
							|  |  |  | -V     : print the Python version number and exit\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
										 |  |  | "; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | usage(int exitcode, char* program) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	fprintf(stderr, usage_line, program); | 
					
						
							|  |  |  | 	fprintf(stderr, usage_top); | 
					
						
							|  |  |  | 	fprintf(stderr, usage_mid); | 
					
						
							|  |  |  | 	fprintf(stderr, usage_bot, DELIM, DELIM, PYTHONHOMEHELP); | 
					
						
							|  |  |  | 	exit(exitcode); | 
					
						
							|  |  |  | 	/*NOTREACHED*/ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | /* Main program */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-07 14:28:47 +00:00
										 |  |  | DL_EXPORT(int) | 
					
						
							| 
									
										
										
										
											2000-07-09 20:42:34 +00:00
										 |  |  | Py_Main(int argc, char **argv) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	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; | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | 	int help = 0; | 
					
						
							|  |  |  | 	int version = 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 	while ((c = _PyOS_GetOpt(argc, argv, "c:diOStuUvxXhV")) != 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. */ | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 			command = malloc(strlen(_PyOS_optarg) + 2); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			if (command == NULL) | 
					
						
							|  |  |  | 				Py_FatalError( | 
					
						
							|  |  |  | 				   "not enough memory to copy -c argument"); | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 			strcpy(command, _PyOS_optarg); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-01 17:54:33 +00:00
										 |  |  | 		case 'U': | 
					
						
							|  |  |  | 			Py_UnicodeFlag++; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | 		case 'h': | 
					
						
							|  |  |  | 			help++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'V': | 
					
						
							|  |  |  | 			version++; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2000-05-01 17:54:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 		/* This space reserved for other options */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | 			usage(2, argv[0]); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 			/*NOTREACHED*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-15 18:40:42 +00:00
										 |  |  | 	if (help) | 
					
						
							|  |  |  | 		usage(0, argv[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (version) { | 
					
						
							|  |  |  | 		fprintf(stderr, "Python %s\n", PY_VERSION); | 
					
						
							|  |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 	if (command == NULL && _PyOS_optind < argc && | 
					
						
							|  |  |  | 	    strcmp(argv[_PyOS_optind], "-") != 0) | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 		filename = argv[_PyOS_optind]; | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 		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) { | 
					
						
							| 
									
										
										
										
											1999-04-19 17:54:19 +00:00
										 |  |  | 				int ch; | 
					
						
							|  |  |  | 				/* Push back first newline so line numbers
 | 
					
						
							|  |  |  | 				   remain the same */ | 
					
						
							|  |  |  | 				while ((ch = getc(fp)) != EOF) { | 
					
						
							|  |  |  | 					if (ch == '\n') { | 
					
						
							|  |  |  | 						(void)ungetc(ch, fp); | 
					
						
							|  |  |  | 						break; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											1997-12-05 21:56:45 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											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", | 
					
						
							| 
									
										
										
										
											2000-09-05 04:41:18 +00:00
										 |  |  | 			Py_GetVersion(), Py_GetPlatform(), COPYRIGHT); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (command != NULL) { | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 		/* Backup _PyOS_optind and force sys.argv[0] = '-c' */ | 
					
						
							|  |  |  | 		_PyOS_optind--; | 
					
						
							|  |  |  | 		argv[_PyOS_optind] = "-c"; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-03 08:18:37 +00:00
										 |  |  | 	PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind); | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-08-27 19:21:52 +00:00
										 |  |  | 		sts = PyRun_AnyFileEx( | 
					
						
							| 
									
										
										
										
											1997-02-14 19:50:32 +00:00
										 |  |  | 			fp, | 
					
						
							| 
									
										
										
										
											2000-08-27 19:21:52 +00:00
										 |  |  | 			filename == NULL ? "<stdin>" : filename, | 
					
						
							|  |  |  | 			filename != NULL) != 0; | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2000-07-09 20:42:34 +00:00
										 |  |  | Py_GetArgcArgv(int *argc, char ***argv) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	*argc = orig_argc; | 
					
						
							|  |  |  | 	*argv = orig_argv; | 
					
						
							|  |  |  | } |