blob: d75f64a65f30580f76fb10df5a40b8be0200e19d [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
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +00008#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +00009#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000010#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000011#include <fcntl.h>
12#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000013#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000014
Martin v. Löwis945362c2007-08-30 14:57:25 +000015#ifdef _MSC_VER
16#include <crtdbg.h>
17#endif
18
Jesus Ceaab70e2a2012-10-05 01:48:08 +020019#if defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000020#define PYTHONHOMEHELP "<prefix>\\lib"
21#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000022#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000023#endif
24
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000025#include "pygetopt.h"
26
Guido van Rossuma22865e2000-09-05 04:41:18 +000027#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000028 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
29 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000030
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000031#ifdef __cplusplus
32extern "C" {
33#endif
34
Guido van Rossumac56b031996-07-21 02:33:38 +000035/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000036static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000037static int orig_argc;
38
Guido van Rossumbceccf52001-04-10 22:07:43 +000039/* command line options */
Christian Heimesad73a9c2013-08-10 16:36:18 +020040#define BASE_OPTS L"bBc:dEhiIJm:OqRsStuvVW:xX:?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000041
Guido van Rossumbceccf52001-04-10 22:07:43 +000042#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000043
Guido van Rossum667d7041995-08-04 04:20:48 +000044/* Short usage message (with %s for argv0) */
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020045static const char usage_line[] =
Martin v. Löwis790465f2008-04-05 20:41:37 +000046"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000047
48/* Long usage message, split into parts < 512 bytes */
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020049static const char usage_1[] = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000050Options and arguments (and corresponding environment variables):\n\
Christian Heimes2ab34442008-09-03 20:31:07 +000051-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
52 and comparing bytes/bytearray with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000053-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000054-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000055-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000056-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000057-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000058";
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020059static const char usage_2[] = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000060-i : inspect interactively after running script; forces a prompt even\n\
61 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Christian Heimesad73a9c2013-08-10 16:36:18 +020062-I : isolate Python from the user's environment (implies -E and -s)\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000063-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000064-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000065-OO : remove doc-strings in addition to the -O optimizations\n\
Georg Brandl9d871192010-12-04 10:47:18 +000066-q : don't print version and copyright messages on interactive startup\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000067-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000068-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000069";
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020070static const char usage_3[] = "\
Ezio Melotti61b0c672013-07-25 05:04:02 +020071-u : unbuffered binary stdout and stderr, stdin always buffered;\n\
72 also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000073 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000074-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
75 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000076-V : print the Python version number and exit (also --version)\n\
INADA Naoki0e175a62016-11-21 20:57:14 +090077 when given twice, print more information about the build\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000078-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000079 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000080-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000081-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000082";
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020083static const char usage_4[] = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000084file : program read from script file\n\
85- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000086arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000087Other environment variables:\n\
88PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Serhiy Storchaka1ba01612015-12-30 09:28:19 +020089PYTHONPATH : '%lc'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000090 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000091";
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020092static const char usage_5[] =
Serhiy Storchaka1ba01612015-12-30 09:28:19 +020093"PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n"
Victor Stinner9802b392010-08-19 11:36:43 +000094" The default module search path uses %s.\n"
95"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
96"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Victor Stinner34be807c2016-03-14 12:04:26 +010097"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n";
98static const char usage_6[] =
99"PYTHONHASHSEED: if this variable is set to 'random', a random value is used\n"
100" to seed the hashes of str, bytes and datetime objects. It can also be\n"
101" set to an integer in the range [0,4294967295] to get hash values with a\n"
102" predictable seed.\n"
103"PYTHONMALLOC: set the Python memory allocators and/or install debug hooks\n"
104" on Python memory allocators. Use PYTHONMALLOC=debug to install debug\n"
105" hooks.\n";
Guido van Rossum667d7041995-08-04 04:20:48 +0000106
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000107static int
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200108usage(int exitcode, const wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000109{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 fprintf(f, usage_line, program);
113 if (exitcode)
114 fprintf(f, "Try `python -h' for more information.\n");
115 else {
116 fputs(usage_1, f);
117 fputs(usage_2, f);
118 fputs(usage_3, f);
Serhiy Storchaka1ba01612015-12-30 09:28:19 +0200119 fprintf(f, usage_4, (wint_t)DELIM);
120 fprintf(f, usage_5, (wint_t)DELIM, PYTHONHOMEHELP);
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100121 fputs(usage_6, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 return exitcode;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000124}
125
Martin v. Löwis6caea372003-11-18 19:46:25 +0000126static void RunStartupFile(PyCompilerFlags *cf)
127{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 char *startup = Py_GETENV("PYTHONSTARTUP");
129 if (startup != NULL && startup[0] != '\0') {
Victor Stinnerdaf45552013-08-28 00:53:59 +0200130 FILE *fp = _Py_fopen(startup, "r");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 if (fp != NULL) {
132 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
133 PyErr_Clear();
134 fclose(fp);
135 } else {
136 int save_errno;
137
138 save_errno = errno;
139 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
140 errno = save_errno;
141 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
142 startup);
143 PyErr_Print();
144 PyErr_Clear();
145 }
146 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000147}
148
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200149static void RunInteractiveHook(void)
150{
151 PyObject *sys, *hook, *result;
152 sys = PyImport_ImportModule("sys");
153 if (sys == NULL)
154 goto error;
155 hook = PyObject_GetAttrString(sys, "__interactivehook__");
156 Py_DECREF(sys);
157 if (hook == NULL)
158 PyErr_Clear();
159 else {
160 result = PyObject_CallObject(hook, NULL);
161 Py_DECREF(hook);
162 if (result == NULL)
163 goto error;
164 else
165 Py_DECREF(result);
166 }
167 return;
168
169error:
170 PySys_WriteStderr("Failed calling sys.__interactivehook__\n");
171 PyErr_Print();
172 PyErr_Clear();
173}
174
Thomas Woutersa9773292006-04-21 09:43:23 +0000175
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000176static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000177{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000178 PyObject *module, *runpy, *runmodule, *runargs, *result;
179 runpy = PyImport_ImportModule("runpy");
180 if (runpy == NULL) {
181 fprintf(stderr, "Could not import runpy module\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200182 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000183 return -1;
184 }
185 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
186 if (runmodule == NULL) {
187 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200188 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 Py_DECREF(runpy);
190 return -1;
191 }
192 module = PyUnicode_FromWideChar(modname, wcslen(modname));
193 if (module == NULL) {
194 fprintf(stderr, "Could not convert module name to unicode\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200195 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 Py_DECREF(runpy);
197 Py_DECREF(runmodule);
198 return -1;
199 }
200 runargs = Py_BuildValue("(Oi)", module, set_argv0);
201 if (runargs == NULL) {
202 fprintf(stderr,
203 "Could not create arguments for 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 Py_DECREF(runmodule);
207 Py_DECREF(module);
208 return -1;
209 }
210 result = PyObject_Call(runmodule, runargs, NULL);
211 if (result == NULL) {
212 PyErr_Print();
213 }
214 Py_DECREF(runpy);
215 Py_DECREF(runmodule);
216 Py_DECREF(module);
217 Py_DECREF(runargs);
218 if (result == NULL) {
219 return -1;
220 }
221 Py_DECREF(result);
222 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000223}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000224
Victor Stinner4726e402010-10-06 23:24:57 +0000225static int
226RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000227{
Victor Stinner4726e402010-10-06 23:24:57 +0000228 PyObject *argv0 = NULL, *importer, *sys_path;
229 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000230
Victor Stinner4726e402010-10-06 23:24:57 +0000231 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
232 if (argv0 == NULL)
233 goto error;
234
235 importer = PyImport_GetImporter(argv0);
236 if (importer == NULL)
237 goto error;
238
Brett Cannonaa936422012-04-27 15:30:58 -0400239 if (importer == Py_None) {
Victor Stinner4726e402010-10-06 23:24:57 +0000240 Py_DECREF(argv0);
241 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 return -1;
243 }
Victor Stinner4726e402010-10-06 23:24:57 +0000244 Py_DECREF(importer);
245
246 /* argv0 is usable as an import source, so put it in sys.path[0]
247 and import __main__ */
Victor Stinnerbd303c12013-11-07 23:07:29 +0100248 sys_path = PySys_GetObject("path");
Victor Stinner1e53bba2013-07-16 22:26:05 +0200249 if (sys_path == NULL) {
250 PyErr_SetString(PyExc_RuntimeError, "unable to get sys.path");
Victor Stinner4726e402010-10-06 23:24:57 +0000251 goto error;
Victor Stinner1e53bba2013-07-16 22:26:05 +0200252 }
Victor Stinner4726e402010-10-06 23:24:57 +0000253 if (PyList_SetItem(sys_path, 0, argv0)) {
254 argv0 = NULL;
255 goto error;
256 }
257 Py_INCREF(argv0);
258
259 sts = RunModule(L"__main__", 0);
260 return sts != 0;
261
262error:
263 Py_XDECREF(argv0);
264 PyErr_Print();
265 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000266}
267
Victor Stinnera62207c2010-08-07 10:57:17 +0000268static int
269run_command(wchar_t *command, PyCompilerFlags *cf)
270{
271 PyObject *unicode, *bytes;
272 int ret;
273
274 unicode = PyUnicode_FromWideChar(command, -1);
275 if (unicode == NULL)
276 goto error;
277 bytes = PyUnicode_AsUTF8String(unicode);
278 Py_DECREF(unicode);
279 if (bytes == NULL)
280 goto error;
281 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
282 Py_DECREF(bytes);
283 return ret != 0;
284
285error:
Victor Stinner398356b2010-08-18 22:23:22 +0000286 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000287 PyErr_Print();
288 return 1;
289}
290
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000291static int
292run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
293{
294 PyObject *unicode, *bytes = NULL;
295 char *filename_str;
296 int run;
297
298 /* call pending calls like signal handlers (SIGINT) */
299 if (Py_MakePendingCalls() == -1) {
300 PyErr_Print();
301 return 1;
302 }
303
304 if (filename) {
305 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
306 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000307 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000308 Py_DECREF(unicode);
309 }
310 if (bytes != NULL)
311 filename_str = PyBytes_AsString(bytes);
312 else {
313 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000314 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000315 }
316 }
317 else
318 filename_str = "<stdin>";
319
320 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
321 Py_XDECREF(bytes);
322 return run != 0;
323}
324
Christian Heimes9cd17752007-11-18 19:35:23 +0000325
Guido van Rossum667d7041995-08-04 04:20:48 +0000326/* Main program */
327
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000328int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000329Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000330{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 int c;
332 int sts;
333 wchar_t *command = NULL;
334 wchar_t *filename = NULL;
335 wchar_t *module = NULL;
336 FILE *fp = stdin;
337 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000338#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000340#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000341 int skipfirstline = 0;
342 int stdin_is_interactive = 0;
343 int help = 0;
344 int version = 0;
345 int saw_unbuffered_flag = 0;
Victor Stinner34be807c2016-03-14 12:04:26 +0100346 char *opt;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 PyCompilerFlags cf;
Antoine Pitrou69994412014-04-29 00:56:08 +0200348 PyObject *warning_option = NULL;
349 PyObject *warning_options = NULL;
Guido van Rossum667d7041995-08-04 04:20:48 +0000350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000352
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000353 orig_argc = argc; /* For Py_GetArgcArgv() */
354 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000355
Antoine Pitrou86838b02012-02-21 19:03:47 +0100356 /* Hash randomization needed early for all string operations
357 (including -W and -X options). */
Ezio Melottia0dd22e2012-11-23 18:48:32 +0200358 _PyOS_opterr = 0; /* prevent printing the error in 1st pass */
Antoine Pitrou86838b02012-02-21 19:03:47 +0100359 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
360 if (c == 'm' || c == 'c') {
361 /* -c / -m is the last option: following arguments are
362 not interpreter options. */
363 break;
364 }
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500365 if (c == 'E') {
Antoine Pitrou86838b02012-02-21 19:03:47 +0100366 Py_IgnoreEnvironmentFlag++;
367 break;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100368 }
369 }
Antoine Pitrou86838b02012-02-21 19:03:47 +0100370
Victor Stinner34be807c2016-03-14 12:04:26 +0100371 opt = Py_GETENV("PYTHONMALLOC");
372 if (_PyMem_SetupAllocators(opt) < 0) {
373 fprintf(stderr,
374 "Error in PYTHONMALLOC: unknown allocator \"%s\"!\n", opt);
375 exit(1);
376 }
377
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500378 Py_HashRandomizationFlag = 1;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100379 _PyRandom_Init();
380
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000381 PySys_ResetWarnOptions();
Antoine Pitrou86838b02012-02-21 19:03:47 +0100382 _PyOS_ResetGetOpt();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000383
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000384 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
385 if (c == 'c') {
386 size_t len;
387 /* -c is the last option; following arguments
388 that look like options are left for the
389 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000391 len = wcslen(_PyOS_optarg) + 1 + 1;
Victor Stinner1a7425f2013-07-07 16:25:15 +0200392 command = (wchar_t *)PyMem_RawMalloc(sizeof(wchar_t) * len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000393 if (command == NULL)
394 Py_FatalError(
395 "not enough memory to copy -c argument");
396 wcscpy(command, _PyOS_optarg);
397 command[len - 2] = '\n';
398 command[len - 1] = 0;
399 break;
400 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000401
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 if (c == 'm') {
403 /* -m is the last option; following arguments
404 that look like options are left for the
405 module to interpret. */
406 module = _PyOS_optarg;
407 break;
408 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 switch (c) {
411 case 'b':
412 Py_BytesWarningFlag++;
413 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 case 'd':
416 Py_DebugFlag++;
417 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000418
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000419 case 'i':
420 Py_InspectFlag++;
421 Py_InteractiveFlag++;
422 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000423
Christian Heimesad73a9c2013-08-10 16:36:18 +0200424 case 'I':
425 Py_IsolatedFlag++;
426 Py_NoUserSiteDirectory++;
427 Py_IgnoreEnvironmentFlag++;
428 break;
429
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000430 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 case 'O':
433 Py_OptimizeFlag++;
434 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 case 'B':
437 Py_DontWriteBytecodeFlag++;
438 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 case 's':
441 Py_NoUserSiteDirectory++;
442 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 case 'S':
445 Py_NoSiteFlag++;
446 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 case 'E':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100449 /* Already handled above */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 case 't':
453 /* ignored for backwards compatibility */
454 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000455
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 case 'u':
457 Py_UnbufferedStdioFlag = 1;
458 saw_unbuffered_flag = 1;
459 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000460
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000461 case 'v':
462 Py_VerboseFlag++;
463 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000464
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000465 case 'x':
466 skipfirstline = 1;
467 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 case 'h':
470 case '?':
471 help++;
472 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 case 'V':
475 version++;
476 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000477
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000478 case 'W':
Antoine Pitrou69994412014-04-29 00:56:08 +0200479 if (warning_options == NULL)
480 warning_options = PyList_New(0);
481 if (warning_options == NULL)
482 Py_FatalError("failure in handling of -W argument");
483 warning_option = PyUnicode_FromWideChar(_PyOS_optarg, -1);
484 if (warning_option == NULL)
485 Py_FatalError("failure in handling of -W argument");
Christian Heimes27527072016-09-09 00:08:35 +0200486 if (PyList_Append(warning_options, warning_option) == -1)
487 Py_FatalError("failure in handling of -W argument");
Antoine Pitrou69994412014-04-29 00:56:08 +0200488 Py_DECREF(warning_option);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000489 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000490
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000491 case 'X':
492 PySys_AddXOption(_PyOS_optarg);
493 break;
494
Georg Brandl9d871192010-12-04 10:47:18 +0000495 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000496 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000497 break;
498
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100499 case 'R':
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500500 /* Ignored */
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100501 break;
502
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000503 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000504
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000505 default:
506 return usage(2, argv[0]);
507 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 }
510 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000511
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000512 if (help)
513 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000514
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000515 if (version) {
INADA Naoki0e175a62016-11-21 20:57:14 +0900516 printf("Python %s\n", version >= 2 ? Py_GetVersion() : PY_VERSION);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000517 return 0;
518 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000519
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000520 if (!Py_InspectFlag &&
521 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
522 Py_InspectFlag = 1;
523 if (!saw_unbuffered_flag &&
524 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
525 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000526
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000527 if (!Py_NoUserSiteDirectory &&
528 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
529 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000530
Philip Jenveye53de3d2010-04-14 03:01:39 +0000531#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000532 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
533 *wp != L'\0') {
Steve Dowerf63dab52015-02-25 20:48:01 -0800534 wchar_t *buf, *warning, *context = NULL;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000535
Victor Stinner1a7425f2013-07-07 16:25:15 +0200536 buf = (wchar_t *)PyMem_RawMalloc((wcslen(wp) + 1) * sizeof(wchar_t));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000537 if (buf == NULL)
538 Py_FatalError(
539 "not enough memory to copy PYTHONWARNINGS");
540 wcscpy(buf, wp);
Steve Dowerf63dab52015-02-25 20:48:01 -0800541 for (warning = wcstok_s(buf, L",", &context);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000542 warning != NULL;
Steve Dowerf63dab52015-02-25 20:48:01 -0800543 warning = wcstok_s(NULL, L",", &context)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 PySys_AddWarnOption(warning);
545 }
Victor Stinner1a7425f2013-07-07 16:25:15 +0200546 PyMem_RawFree(buf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000547 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000548#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000549 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
550 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000551 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000552
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000553 /* settle for strtok here as there's no one standard
554 C89 wcstok */
Victor Stinner1a7425f2013-07-07 16:25:15 +0200555 buf = (char *)PyMem_RawMalloc(strlen(p) + 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 if (buf == NULL)
557 Py_FatalError(
558 "not enough memory to copy PYTHONWARNINGS");
559 strcpy(buf, p);
Victor Stinner49fc8ec2013-07-07 23:30:24 +0200560 oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000561 setlocale(LC_ALL, "");
562 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000563#ifdef __APPLE__
564 /* Use utf-8 on Mac OS X */
565 unicode = PyUnicode_FromString(p);
566#else
Victor Stinner1b579672011-12-17 05:47:23 +0100567 unicode = PyUnicode_DecodeLocale(p, "surrogateescape");
Victor Stinner5c848a82010-09-12 08:00:41 +0000568#endif
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100569 if (unicode == NULL) {
570 /* ignore errors */
571 PyErr_Clear();
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000572 continue;
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100573 }
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000574 PySys_AddWarnOptionUnicode(unicode);
575 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000576 }
577 setlocale(LC_ALL, oldloc);
Victor Stinner49fc8ec2013-07-07 23:30:24 +0200578 PyMem_RawFree(oldloc);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200579 PyMem_RawFree(buf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000581#endif
Antoine Pitrou69994412014-04-29 00:56:08 +0200582 if (warning_options != NULL) {
583 Py_ssize_t i;
584 for (i = 0; i < PyList_GET_SIZE(warning_options); i++) {
585 PySys_AddWarnOptionUnicode(PyList_GET_ITEM(warning_options, i));
586 }
587 }
Philip Jenvey0805ca32010-04-07 04:04:10 +0000588
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 if (command == NULL && module == NULL && _PyOS_optind < argc &&
590 wcscmp(argv[_PyOS_optind], L"-") != 0)
591 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 filename = argv[_PyOS_optind];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000593 }
Guido van Rossum775af911997-02-14 19:50:32 +0000594
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000595 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000596
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000597#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000598 /* don't translate newlines (\r\n <=> \n) */
599 _setmode(fileno(stdin), O_BINARY);
600 _setmode(fileno(stdout), O_BINARY);
601 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000602#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000603
604 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000605#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000606 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
607 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
608 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000609#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 setbuf(stdin, (char *)NULL);
611 setbuf(stdout, (char *)NULL);
612 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000613#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000614 }
615 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000616#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000617 /* Doesn't have to have line-buffered -- use unbuffered */
618 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
619 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000620#else /* !MS_WINDOWS */
621#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
623 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000624#endif /* HAVE_SETVBUF */
625#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000626 /* Leave stderr alone - it should be unbuffered anyway. */
627 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000628
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000629#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000630 /* On MacOS X, when the Python interpreter is embedded in an
631 application bundle, it gets executed by a bootstrapping script
632 that does os.execve() with an argv[0] that's different from the
633 actual Python executable. This is needed to keep the Finder happy,
634 or rather, to work around Apple's overly strict requirements of
635 the process name. However, we still need a usable sys.executable,
636 so the actual executable path is passed in an environment variable.
637 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
638 script. */
639 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
640 wchar_t* buffer;
Ronald Oussoreneb61f8b2012-08-22 14:24:14 +0200641 size_t len = strlen(p) + 1;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000642
Victor Stinner1a7425f2013-07-07 16:25:15 +0200643 buffer = PyMem_RawMalloc(len * sizeof(wchar_t));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000644 if (buffer == NULL) {
645 Py_FatalError(
646 "not enough memory to copy PYTHONEXECUTABLE");
647 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000648
Brett Cannonb94767f2011-02-22 20:15:44 +0000649 mbstowcs(buffer, p, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000650 Py_SetProgramName(buffer);
651 /* buffer is now handed off - do not free */
652 } else {
Vinay Sajip90db6612012-07-17 17:33:46 +0100653#ifdef WITH_NEXT_FRAMEWORK
654 char* pyvenv_launcher = getenv("__PYVENV_LAUNCHER__");
655
656 if (pyvenv_launcher && *pyvenv_launcher) {
657 /* Used by Mac/Tools/pythonw.c to forward
658 * the argv0 of the stub executable
659 */
Victor Stinnerf6a271a2014-08-01 12:28:48 +0200660 wchar_t* wbuf = Py_DecodeLocale(pyvenv_launcher, NULL);
Vinay Sajip90db6612012-07-17 17:33:46 +0100661
662 if (wbuf == NULL) {
663 Py_FatalError("Cannot decode __PYVENV_LAUNCHER__");
664 }
665 Py_SetProgramName(wbuf);
666
667 /* Don't free wbuf, the argument to Py_SetProgramName
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000668 * must remain valid until Py_FinalizeEx is called.
Vinay Sajip90db6612012-07-17 17:33:46 +0100669 */
670 } else {
671 Py_SetProgramName(argv[0]);
672 }
673#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000674 Py_SetProgramName(argv[0]);
Vinay Sajip90db6612012-07-17 17:33:46 +0100675#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000676 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000677#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000678 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000679#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000680 Py_Initialize();
Antoine Pitrou69994412014-04-29 00:56:08 +0200681 Py_XDECREF(warning_options);
Guido van Rossumed52aac1997-07-19 19:20:32 +0000682
Georg Brandl8aa7e992010-12-28 18:30:18 +0000683 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000684 (command == NULL && filename == NULL &&
685 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000686 fprintf(stderr, "Python %s on %s\n",
687 Py_GetVersion(), Py_GetPlatform());
688 if (!Py_NoSiteFlag)
689 fprintf(stderr, "%s\n", COPYRIGHT);
690 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000691
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 if (command != NULL) {
693 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
694 _PyOS_optind--;
695 argv[_PyOS_optind] = L"-c";
696 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000697
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000698 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000699 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000700 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000701 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000702 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000703
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000704 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000705
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000706 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
Steve Dower313523c2016-09-17 12:22:41 -0700707 isatty(fileno(stdin)) &&
708 !Py_IsolatedFlag) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000709 PyObject *v;
710 v = PyImport_ImportModule("readline");
711 if (v == NULL)
712 PyErr_Clear();
713 else
714 Py_DECREF(v);
715 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000716
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000717 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000718 sts = run_command(command, &cf);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200719 PyMem_RawFree(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000720 } else if (module) {
Senthil Kumaranf01a3372012-07-04 19:28:16 -0700721 sts = (RunModule(module, 1) != 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000722 }
723 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000724
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000725 if (filename == NULL && stdin_is_interactive) {
726 Py_InspectFlag = 0; /* do exit on SystemExit */
727 RunStartupFile(&cf);
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200728 RunInteractiveHook();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 }
730 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000731
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000732 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000733
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 if (filename != NULL) {
735 sts = RunMainFromImporter(filename);
736 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000737
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000738 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000739 fp = _Py_wfopen(filename, L"r");
740 if (fp == NULL) {
741 char *cfilename_buffer;
742 const char *cfilename;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100743 int err = errno;
Victor Stinnerf6a271a2014-08-01 12:28:48 +0200744 cfilename_buffer = Py_EncodeLocale(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000745 if (cfilename_buffer != NULL)
746 cfilename = cfilename_buffer;
747 else
748 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000749 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100750 argv[0], cfilename, err, strerror(err));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000751 if (cfilename_buffer)
752 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000753 return 2;
754 }
755 else if (skipfirstline) {
756 int ch;
757 /* Push back first newline so line numbers
758 remain the same */
759 while ((ch = getc(fp)) != EOF) {
760 if (ch == '\n') {
761 (void)ungetc(ch, fp);
762 break;
763 }
764 }
765 }
766 {
Steve Dowerf2f373f2015-02-21 08:44:05 -0800767 struct _Py_stat_struct sb;
Victor Stinnere134a7f2015-03-30 10:09:31 +0200768 if (_Py_fstat_noraise(fileno(fp), &sb) == 0 &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000769 S_ISDIR(sb.st_mode)) {
Victor Stinnere134a7f2015-03-30 10:09:31 +0200770 fprintf(stderr,
771 "%ls: '%ls' is a directory, cannot continue\n",
772 argv[0], filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000773 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
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000800 if (Py_FinalizeEx() < 0) {
801 /* Value unlikely to be confused with a non-error exit status or
802 other special meaning */
803 sts = 120;
804 }
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000805
806#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000807 /* Insure++ is a memory analysis tool that aids in discovering
808 * memory leaks and other memory problems. On Python exit, the
809 * interned string dictionaries are flagged as being in use at exit
810 * (which it is). Under normal circumstances, this is fine because
811 * the memory will be automatically reclaimed by the system. Under
812 * memory debugging, it's a huge source of useless noise, so we
813 * trade off slower shutdown for less distraction in the memory
814 * reports. -baw
815 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000816 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000817#endif /* __INSURE__ */
818
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000819 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000820}
821
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000822/* this is gonna seem *real weird*, but if you put some other code between
823 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
824 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000825
Guido van Rossum667d7041995-08-04 04:20:48 +0000826/* Make the *original* argc/argv available to other modules.
827 This is rare, but it is needed by the secureware extension. */
828
829void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000830Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000831{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000832 *argc = orig_argc;
833 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000834}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000835
836#ifdef __cplusplus
837}
838#endif