blob: 25190b8e7faac535269f4afac56bdf9b643979e9 [file] [log] [blame]
Guido van Rossum667d7041995-08-04 04:20:48 +00001/* Python interpreter main program */
2
3#include "Python.h"
Guido van Rossuma075ce11997-12-05 21:56:45 +00004#include "osdefs.h"
Guido van Rossum667d7041995-08-04 04:20:48 +00005
Antoine Pitrou5651eaa2008-09-06 20:46:58 +00006#include <locale.h>
7
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00008#ifdef __VMS
Victor Stinnerb90db4c2011-04-26 22:48:24 +02009#error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
Martin v. Löwis7a924e62003-03-05 14:15:21 +000010#include <unixlib.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000011#endif
12
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +000013#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +000014#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000015#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000016#include <fcntl.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000017#define PATH_MAX MAXPATHLEN
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000018#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000019#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000020
Martin v. Löwis945362c2007-08-30 14:57:25 +000021#ifdef _MSC_VER
22#include <crtdbg.h>
23#endif
24
Jesus Ceaab70e2a2012-10-05 01:48:08 +020025#if defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000026#define PYTHONHOMEHELP "<prefix>\\lib"
27#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000028#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000029#endif
30
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000031#include "pygetopt.h"
32
Guido van Rossuma22865e2000-09-05 04:41:18 +000033#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000034 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
35 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000036
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000037#ifdef __cplusplus
38extern "C" {
39#endif
40
Guido van Rossumac56b031996-07-21 02:33:38 +000041/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000042static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000043static int orig_argc;
44
Guido van Rossumbceccf52001-04-10 22:07:43 +000045/* command line options */
Christian Heimesad73a9c2013-08-10 16:36:18 +020046#define BASE_OPTS L"bBc:dEhiIJm:OqRsStuvVW:xX:?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000047
Guido van Rossumbceccf52001-04-10 22:07:43 +000048#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000049
Guido van Rossum667d7041995-08-04 04:20:48 +000050/* Short usage message (with %s for argv0) */
51static char *usage_line =
Martin v. Löwis790465f2008-04-05 20:41:37 +000052"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000053
54/* Long usage message, split into parts < 512 bytes */
Guido van Rossum393661d2001-08-31 17:40:15 +000055static char *usage_1 = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000056Options and arguments (and corresponding environment variables):\n\
Christian Heimes2ab34442008-09-03 20:31:07 +000057-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
58 and comparing bytes/bytearray with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000059-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000060-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000061-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000062-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000063-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000064";
65static char *usage_2 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000066-i : inspect interactively after running script; forces a prompt even\n\
67 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Christian Heimesad73a9c2013-08-10 16:36:18 +020068-I : isolate Python from the user's environment (implies -E and -s)\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000069-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000070-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000071-OO : remove doc-strings in addition to the -O optimizations\n\
Georg Brandl9d871192010-12-04 10:47:18 +000072-q : don't print version and copyright messages on interactive startup\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000073-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000074-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000075";
76static char *usage_3 = "\
Ezio Melotti61b0c672013-07-25 05:04:02 +020077-u : unbuffered binary stdout and stderr, stdin always buffered;\n\
78 also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000079 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000080-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
81 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000082-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000083-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000084 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000085-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000086-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000087";
Guido van Rossum393661d2001-08-31 17:40:15 +000088static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000089file : program read from script file\n\
90- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000091arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000092Other environment variables:\n\
93PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000094PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000095 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000096";
Victor Stinner9802b392010-08-19 11:36:43 +000097static char *usage_5 =
98"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
99" The default module search path uses %s.\n"
100"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
101"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Georg Brandl2fb477c2012-02-21 00:33:36 +0100102"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000103";
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100104static char *usage_6 = "\
Georg Brandl42ae4722012-02-21 22:37:36 +0100105PYTHONHASHSEED: if this variable is set to 'random', a random value is used\n\
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500106 to seed the hashes of str, bytes and datetime objects. It can also be\n\
107 set to an integer in the range [0,4294967295] to get hash values with a\n\
108 predictable seed.\n\
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100109";
Guido van Rossum667d7041995-08-04 04:20:48 +0000110
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000111static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000112usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000113{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000115
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 fprintf(f, usage_line, program);
117 if (exitcode)
118 fprintf(f, "Try `python -h' for more information.\n");
119 else {
120 fputs(usage_1, f);
121 fputs(usage_2, f);
122 fputs(usage_3, f);
123 fprintf(f, usage_4, DELIM);
124 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100125 fputs(usage_6, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000127#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 if (exitcode == 0) {
129 /* suppress 'error' message */
130 return 1;
131 }
132 else {
133 /* STS$M_INHIB_MSG + SS$_ABORT */
134 return 0x1000002c;
135 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000136#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000138#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000140}
141
Martin v. Löwis6caea372003-11-18 19:46:25 +0000142static void RunStartupFile(PyCompilerFlags *cf)
143{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000144 char *startup = Py_GETENV("PYTHONSTARTUP");
145 if (startup != NULL && startup[0] != '\0') {
146 FILE *fp = fopen(startup, "r");
147 if (fp != NULL) {
148 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
149 PyErr_Clear();
150 fclose(fp);
151 } else {
152 int save_errno;
153
154 save_errno = errno;
155 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
156 errno = save_errno;
157 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
158 startup);
159 PyErr_Print();
160 PyErr_Clear();
161 }
162 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000163}
164
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200165static void RunInteractiveHook(void)
166{
167 PyObject *sys, *hook, *result;
168 sys = PyImport_ImportModule("sys");
169 if (sys == NULL)
170 goto error;
171 hook = PyObject_GetAttrString(sys, "__interactivehook__");
172 Py_DECREF(sys);
173 if (hook == NULL)
174 PyErr_Clear();
175 else {
176 result = PyObject_CallObject(hook, NULL);
177 Py_DECREF(hook);
178 if (result == NULL)
179 goto error;
180 else
181 Py_DECREF(result);
182 }
183 return;
184
185error:
186 PySys_WriteStderr("Failed calling sys.__interactivehook__\n");
187 PyErr_Print();
188 PyErr_Clear();
189}
190
Thomas Woutersa9773292006-04-21 09:43:23 +0000191
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000192static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000193{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 PyObject *module, *runpy, *runmodule, *runargs, *result;
195 runpy = PyImport_ImportModule("runpy");
196 if (runpy == NULL) {
197 fprintf(stderr, "Could not import runpy module\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200198 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000199 return -1;
200 }
201 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
202 if (runmodule == NULL) {
203 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200204 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000205 Py_DECREF(runpy);
206 return -1;
207 }
208 module = PyUnicode_FromWideChar(modname, wcslen(modname));
209 if (module == NULL) {
210 fprintf(stderr, "Could not convert module name to unicode\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200211 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 Py_DECREF(runpy);
213 Py_DECREF(runmodule);
214 return -1;
215 }
216 runargs = Py_BuildValue("(Oi)", module, set_argv0);
217 if (runargs == NULL) {
218 fprintf(stderr,
219 "Could not create arguments for runpy._run_module_as_main\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200220 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 Py_DECREF(runpy);
222 Py_DECREF(runmodule);
223 Py_DECREF(module);
224 return -1;
225 }
226 result = PyObject_Call(runmodule, runargs, NULL);
227 if (result == NULL) {
228 PyErr_Print();
229 }
230 Py_DECREF(runpy);
231 Py_DECREF(runmodule);
232 Py_DECREF(module);
233 Py_DECREF(runargs);
234 if (result == NULL) {
235 return -1;
236 }
237 Py_DECREF(result);
238 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000239}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000240
Victor Stinner4726e402010-10-06 23:24:57 +0000241static int
242RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000243{
Victor Stinner4726e402010-10-06 23:24:57 +0000244 PyObject *argv0 = NULL, *importer, *sys_path;
245 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000246
Victor Stinner4726e402010-10-06 23:24:57 +0000247 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
248 if (argv0 == NULL)
249 goto error;
250
251 importer = PyImport_GetImporter(argv0);
252 if (importer == NULL)
253 goto error;
254
Brett Cannonaa936422012-04-27 15:30:58 -0400255 if (importer == Py_None) {
Victor Stinner4726e402010-10-06 23:24:57 +0000256 Py_DECREF(argv0);
257 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000258 return -1;
259 }
Victor Stinner4726e402010-10-06 23:24:57 +0000260 Py_DECREF(importer);
261
262 /* argv0 is usable as an import source, so put it in sys.path[0]
263 and import __main__ */
264 sys_path = PySys_GetObject("path");
Victor Stinner1e53bba2013-07-16 22:26:05 +0200265 if (sys_path == NULL) {
266 PyErr_SetString(PyExc_RuntimeError, "unable to get sys.path");
Victor Stinner4726e402010-10-06 23:24:57 +0000267 goto error;
Victor Stinner1e53bba2013-07-16 22:26:05 +0200268 }
Victor Stinner4726e402010-10-06 23:24:57 +0000269 if (PyList_SetItem(sys_path, 0, argv0)) {
270 argv0 = NULL;
271 goto error;
272 }
273 Py_INCREF(argv0);
274
275 sts = RunModule(L"__main__", 0);
276 return sts != 0;
277
278error:
279 Py_XDECREF(argv0);
280 PyErr_Print();
281 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000282}
283
Victor Stinnera62207c2010-08-07 10:57:17 +0000284static int
285run_command(wchar_t *command, PyCompilerFlags *cf)
286{
287 PyObject *unicode, *bytes;
288 int ret;
289
290 unicode = PyUnicode_FromWideChar(command, -1);
291 if (unicode == NULL)
292 goto error;
293 bytes = PyUnicode_AsUTF8String(unicode);
294 Py_DECREF(unicode);
295 if (bytes == NULL)
296 goto error;
297 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
298 Py_DECREF(bytes);
299 return ret != 0;
300
301error:
Victor Stinner398356b2010-08-18 22:23:22 +0000302 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000303 PyErr_Print();
304 return 1;
305}
306
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000307static int
308run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
309{
310 PyObject *unicode, *bytes = NULL;
311 char *filename_str;
312 int run;
313
314 /* call pending calls like signal handlers (SIGINT) */
315 if (Py_MakePendingCalls() == -1) {
316 PyErr_Print();
317 return 1;
318 }
319
320 if (filename) {
321 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
322 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000323 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000324 Py_DECREF(unicode);
325 }
326 if (bytes != NULL)
327 filename_str = PyBytes_AsString(bytes);
328 else {
329 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000330 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000331 }
332 }
333 else
334 filename_str = "<stdin>";
335
336 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
337 Py_XDECREF(bytes);
338 return run != 0;
339}
340
Christian Heimes9cd17752007-11-18 19:35:23 +0000341
Guido van Rossum667d7041995-08-04 04:20:48 +0000342/* Main program */
343
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000344int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000345Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000346{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 int c;
348 int sts;
349 wchar_t *command = NULL;
350 wchar_t *filename = NULL;
351 wchar_t *module = NULL;
352 FILE *fp = stdin;
353 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000354#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000355 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000356#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 int skipfirstline = 0;
358 int stdin_is_interactive = 0;
359 int help = 0;
360 int version = 0;
361 int saw_unbuffered_flag = 0;
362 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000363
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000364 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000365
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 orig_argc = argc; /* For Py_GetArgcArgv() */
367 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000368
Antoine Pitrou86838b02012-02-21 19:03:47 +0100369 /* Hash randomization needed early for all string operations
370 (including -W and -X options). */
Ezio Melottia0dd22e2012-11-23 18:48:32 +0200371 _PyOS_opterr = 0; /* prevent printing the error in 1st pass */
Antoine Pitrou86838b02012-02-21 19:03:47 +0100372 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
373 if (c == 'm' || c == 'c') {
374 /* -c / -m is the last option: following arguments are
375 not interpreter options. */
376 break;
377 }
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500378 if (c == 'E') {
Antoine Pitrou86838b02012-02-21 19:03:47 +0100379 Py_IgnoreEnvironmentFlag++;
380 break;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100381 }
382 }
Antoine Pitrou86838b02012-02-21 19:03:47 +0100383
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500384 Py_HashRandomizationFlag = 1;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100385 _PyRandom_Init();
386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 PySys_ResetWarnOptions();
Antoine Pitrou86838b02012-02-21 19:03:47 +0100388 _PyOS_ResetGetOpt();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000389
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000390 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
391 if (c == 'c') {
392 size_t len;
393 /* -c is the last option; following arguments
394 that look like options are left for the
395 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 len = wcslen(_PyOS_optarg) + 1 + 1;
Victor Stinner1a7425f2013-07-07 16:25:15 +0200398 command = (wchar_t *)PyMem_RawMalloc(sizeof(wchar_t) * len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 if (command == NULL)
400 Py_FatalError(
401 "not enough memory to copy -c argument");
402 wcscpy(command, _PyOS_optarg);
403 command[len - 2] = '\n';
404 command[len - 1] = 0;
405 break;
406 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000407
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000408 if (c == 'm') {
409 /* -m is the last option; following arguments
410 that look like options are left for the
411 module to interpret. */
412 module = _PyOS_optarg;
413 break;
414 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000415
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000416 switch (c) {
417 case 'b':
418 Py_BytesWarningFlag++;
419 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 case 'd':
422 Py_DebugFlag++;
423 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000424
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000425 case 'i':
426 Py_InspectFlag++;
427 Py_InteractiveFlag++;
428 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000429
Christian Heimesad73a9c2013-08-10 16:36:18 +0200430 case 'I':
431 Py_IsolatedFlag++;
432 Py_NoUserSiteDirectory++;
433 Py_IgnoreEnvironmentFlag++;
434 break;
435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000437
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 case 'O':
439 Py_OptimizeFlag++;
440 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 case 'B':
443 Py_DontWriteBytecodeFlag++;
444 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000445
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 case 's':
447 Py_NoUserSiteDirectory++;
448 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000449
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 case 'S':
451 Py_NoSiteFlag++;
452 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 case 'E':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100455 /* Already handled above */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000457
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 case 't':
459 /* ignored for backwards compatibility */
460 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000461
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 case 'u':
463 Py_UnbufferedStdioFlag = 1;
464 saw_unbuffered_flag = 1;
465 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000466
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000467 case 'v':
468 Py_VerboseFlag++;
469 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000470
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000471 case 'x':
472 skipfirstline = 1;
473 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000474
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000475 case 'h':
476 case '?':
477 help++;
478 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000479
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000480 case 'V':
481 version++;
482 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000483
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000484 case 'W':
485 PySys_AddWarnOption(_PyOS_optarg);
486 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000487
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000488 case 'X':
489 PySys_AddXOption(_PyOS_optarg);
490 break;
491
Georg Brandl9d871192010-12-04 10:47:18 +0000492 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000493 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000494 break;
495
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100496 case 'R':
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500497 /* Ignored */
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100498 break;
499
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000500 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000501
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 default:
503 return usage(2, argv[0]);
504 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 }
507 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 if (help)
510 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000511
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000512 if (version) {
Serhiy Storchakae3ed4ed2013-07-11 20:01:17 +0300513 printf("Python %s\n", PY_VERSION);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 return 0;
515 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000516
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000517 if (!Py_InspectFlag &&
518 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
519 Py_InspectFlag = 1;
520 if (!saw_unbuffered_flag &&
521 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
522 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 if (!Py_NoUserSiteDirectory &&
525 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
526 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000527
Philip Jenveye53de3d2010-04-14 03:01:39 +0000528#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000529 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
530 *wp != L'\0') {
531 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000532
Victor Stinner1a7425f2013-07-07 16:25:15 +0200533 buf = (wchar_t *)PyMem_RawMalloc((wcslen(wp) + 1) * sizeof(wchar_t));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 if (buf == NULL)
535 Py_FatalError(
536 "not enough memory to copy PYTHONWARNINGS");
537 wcscpy(buf, wp);
538 for (warning = wcstok(buf, L",");
539 warning != NULL;
540 warning = wcstok(NULL, L",")) {
541 PySys_AddWarnOption(warning);
542 }
Victor Stinner1a7425f2013-07-07 16:25:15 +0200543 PyMem_RawFree(buf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000545#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000546 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
547 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000548 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000549
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000550 /* settle for strtok here as there's no one standard
551 C89 wcstok */
Victor Stinner1a7425f2013-07-07 16:25:15 +0200552 buf = (char *)PyMem_RawMalloc(strlen(p) + 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000553 if (buf == NULL)
554 Py_FatalError(
555 "not enough memory to copy PYTHONWARNINGS");
556 strcpy(buf, p);
Victor Stinner49fc8ec2013-07-07 23:30:24 +0200557 oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 setlocale(LC_ALL, "");
559 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000560#ifdef __APPLE__
561 /* Use utf-8 on Mac OS X */
562 unicode = PyUnicode_FromString(p);
563#else
Victor Stinner1b579672011-12-17 05:47:23 +0100564 unicode = PyUnicode_DecodeLocale(p, "surrogateescape");
Victor Stinner5c848a82010-09-12 08:00:41 +0000565#endif
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100566 if (unicode == NULL) {
567 /* ignore errors */
568 PyErr_Clear();
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000569 continue;
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100570 }
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000571 PySys_AddWarnOptionUnicode(unicode);
572 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000573 }
574 setlocale(LC_ALL, oldloc);
Victor Stinner49fc8ec2013-07-07 23:30:24 +0200575 PyMem_RawFree(oldloc);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200576 PyMem_RawFree(buf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000577 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000578#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000579
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 if (command == NULL && module == NULL && _PyOS_optind < argc &&
581 wcscmp(argv[_PyOS_optind], L"-") != 0)
582 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000583#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000584 filename = decc$translate_vms(argv[_PyOS_optind]);
585 if (filename == (char *)0 || filename == (char *)-1)
586 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000587
588#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000590#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 }
Guido van Rossum775af911997-02-14 19:50:32 +0000592
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000593 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000594
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000595#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000596 /* don't translate newlines (\r\n <=> \n) */
597 _setmode(fileno(stdin), O_BINARY);
598 _setmode(fileno(stdout), O_BINARY);
599 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000600#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000601
602 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000603#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
605 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
606 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000607#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 setbuf(stdin, (char *)NULL);
609 setbuf(stdout, (char *)NULL);
610 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000611#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 }
613 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000614#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000615 /* Doesn't have to have line-buffered -- use unbuffered */
616 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
617 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000618#else /* !MS_WINDOWS */
619#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
621 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000622#endif /* HAVE_SETVBUF */
623#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000624 /* Leave stderr alone - it should be unbuffered anyway. */
625 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000626#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000627 else {
628 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
629 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000630#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000631
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000632#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000633 /* On MacOS X, when the Python interpreter is embedded in an
634 application bundle, it gets executed by a bootstrapping script
635 that does os.execve() with an argv[0] that's different from the
636 actual Python executable. This is needed to keep the Finder happy,
637 or rather, to work around Apple's overly strict requirements of
638 the process name. However, we still need a usable sys.executable,
639 so the actual executable path is passed in an environment variable.
640 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
641 script. */
642 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
643 wchar_t* buffer;
Ronald Oussoreneb61f8b2012-08-22 14:24:14 +0200644 size_t len = strlen(p) + 1;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000645
Victor Stinner1a7425f2013-07-07 16:25:15 +0200646 buffer = PyMem_RawMalloc(len * sizeof(wchar_t));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000647 if (buffer == NULL) {
648 Py_FatalError(
649 "not enough memory to copy PYTHONEXECUTABLE");
650 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000651
Brett Cannonb94767f2011-02-22 20:15:44 +0000652 mbstowcs(buffer, p, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000653 Py_SetProgramName(buffer);
654 /* buffer is now handed off - do not free */
655 } else {
Vinay Sajip90db6612012-07-17 17:33:46 +0100656#ifdef WITH_NEXT_FRAMEWORK
657 char* pyvenv_launcher = getenv("__PYVENV_LAUNCHER__");
658
659 if (pyvenv_launcher && *pyvenv_launcher) {
660 /* Used by Mac/Tools/pythonw.c to forward
661 * the argv0 of the stub executable
662 */
663 wchar_t* wbuf = _Py_char2wchar(pyvenv_launcher, NULL);
664
665 if (wbuf == NULL) {
666 Py_FatalError("Cannot decode __PYVENV_LAUNCHER__");
667 }
668 Py_SetProgramName(wbuf);
669
670 /* Don't free wbuf, the argument to Py_SetProgramName
671 * must remain valid until the Py_Finalize is called.
672 */
673 } else {
674 Py_SetProgramName(argv[0]);
675 }
676#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000677 Py_SetProgramName(argv[0]);
Vinay Sajip90db6612012-07-17 17:33:46 +0100678#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000679 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000680#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000682#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000683 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000684
Georg Brandl8aa7e992010-12-28 18:30:18 +0000685 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000686 (command == NULL && filename == NULL &&
687 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000688 fprintf(stderr, "Python %s on %s\n",
689 Py_GetVersion(), Py_GetPlatform());
690 if (!Py_NoSiteFlag)
691 fprintf(stderr, "%s\n", COPYRIGHT);
692 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000693
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 if (command != NULL) {
695 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
696 _PyOS_optind--;
697 argv[_PyOS_optind] = L"-c";
698 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000699
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000700 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000701 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000702 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000703 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000704 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000705
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000706 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000707
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000708 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
709 isatty(fileno(stdin))) {
710 PyObject *v;
711 v = PyImport_ImportModule("readline");
712 if (v == NULL)
713 PyErr_Clear();
714 else
715 Py_DECREF(v);
716 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000717
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000719 sts = run_command(command, &cf);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200720 PyMem_RawFree(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000721 } else if (module) {
Senthil Kumaranf01a3372012-07-04 19:28:16 -0700722 sts = (RunModule(module, 1) != 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000723 }
724 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000725
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 if (filename == NULL && stdin_is_interactive) {
727 Py_InspectFlag = 0; /* do exit on SystemExit */
728 RunStartupFile(&cf);
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200729 RunInteractiveHook();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000730 }
731 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000732
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000733 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000734
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000735 if (filename != NULL) {
736 sts = RunMainFromImporter(filename);
737 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000738
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000739 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000740 fp = _Py_wfopen(filename, L"r");
741 if (fp == NULL) {
742 char *cfilename_buffer;
743 const char *cfilename;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100744 int err = errno;
Victor Stinner2f02a512010-11-08 22:43:46 +0000745 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000746 if (cfilename_buffer != NULL)
747 cfilename = cfilename_buffer;
748 else
749 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000750 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100751 argv[0], cfilename, err, strerror(err));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000752 if (cfilename_buffer)
753 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000754 return 2;
755 }
756 else if (skipfirstline) {
757 int ch;
758 /* Push back first newline so line numbers
759 remain the same */
760 while ((ch = getc(fp)) != EOF) {
761 if (ch == '\n') {
762 (void)ungetc(ch, fp);
763 break;
764 }
765 }
766 }
767 {
768 /* XXX: does this work on Win/Win64? (see posix_fstat) */
769 struct stat sb;
770 if (fstat(fileno(fp), &sb) == 0 &&
771 S_ISDIR(sb.st_mode)) {
772 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
773 fclose(fp);
774 return 1;
775 }
776 }
777 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000778
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000779 if (sts == -1)
780 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000781 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000782
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000783 /* Check this environment variable at the end, to give programs the
784 * opportunity to set it from Python.
785 */
786 if (!Py_InspectFlag &&
787 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
788 {
789 Py_InspectFlag = 1;
790 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000791
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000792 if (Py_InspectFlag && stdin_is_interactive &&
793 (filename != NULL || command != NULL || module != NULL)) {
794 Py_InspectFlag = 0;
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200795 RunInteractiveHook();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 /* XXX */
797 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
798 }
799
800 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000801
802#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000803 /* Insure++ is a memory analysis tool that aids in discovering
804 * memory leaks and other memory problems. On Python exit, the
805 * interned string dictionaries are flagged as being in use at exit
806 * (which it is). Under normal circumstances, this is fine because
807 * the memory will be automatically reclaimed by the system. Under
808 * memory debugging, it's a huge source of useless noise, so we
809 * trade off slower shutdown for less distraction in the memory
810 * reports. -baw
811 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000812 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000813#endif /* __INSURE__ */
814
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000815 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000816}
817
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000818/* this is gonna seem *real weird*, but if you put some other code between
819 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
820 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000821
Guido van Rossum667d7041995-08-04 04:20:48 +0000822/* Make the *original* argc/argv available to other modules.
823 This is rare, but it is needed by the secureware extension. */
824
825void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000826Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000827{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000828 *argc = orig_argc;
829 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000830}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000831
832#ifdef __cplusplus
833}
834#endif