blob: 2daefb871c343527a9e5a912ebf8994ad7973df5 [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 */
Georg Brandl09a7c722012-02-20 21:31:46 +010046#define BASE_OPTS L"bBc:dEhiJm: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\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000068-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000069-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000070-OO : remove doc-strings in addition to the -O optimizations\n\
Georg Brandl9d871192010-12-04 10:47:18 +000071-q : don't print version and copyright messages on interactive startup\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000072-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000073-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000074";
75static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000076-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000077 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000078-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
79 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000080-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000081-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000082 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000083-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000084-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000085";
Guido van Rossum393661d2001-08-31 17:40:15 +000086static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000087file : program read from script file\n\
88- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000089arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000090Other environment variables:\n\
91PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000092PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000093 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000094";
Victor Stinner9802b392010-08-19 11:36:43 +000095static char *usage_5 =
96"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
97" The default module search path uses %s.\n"
98"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
99"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Georg Brandl2fb477c2012-02-21 00:33:36 +0100100"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000101";
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100102static char *usage_6 = "\
Georg Brandl42ae4722012-02-21 22:37:36 +0100103PYTHONHASHSEED: if this variable is set to 'random', a random value is used\n\
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500104 to seed the hashes of str, bytes and datetime objects. It can also be\n\
105 set to an integer in the range [0,4294967295] to get hash values with a\n\
106 predictable seed.\n\
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100107";
Guido van Rossum667d7041995-08-04 04:20:48 +0000108
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000109static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000110usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000111{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000113
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 fprintf(f, usage_line, program);
115 if (exitcode)
116 fprintf(f, "Try `python -h' for more information.\n");
117 else {
118 fputs(usage_1, f);
119 fputs(usage_2, f);
120 fputs(usage_3, f);
121 fprintf(f, usage_4, DELIM);
122 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100123 fputs(usage_6, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000124 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000125#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 if (exitcode == 0) {
127 /* suppress 'error' message */
128 return 1;
129 }
130 else {
131 /* STS$M_INHIB_MSG + SS$_ABORT */
132 return 0x1000002c;
133 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000134#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000135 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000136#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000138}
139
Martin v. Löwis6caea372003-11-18 19:46:25 +0000140static void RunStartupFile(PyCompilerFlags *cf)
141{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000142 char *startup = Py_GETENV("PYTHONSTARTUP");
143 if (startup != NULL && startup[0] != '\0') {
144 FILE *fp = fopen(startup, "r");
145 if (fp != NULL) {
146 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
147 PyErr_Clear();
148 fclose(fp);
149 } else {
150 int save_errno;
151
152 save_errno = errno;
153 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
154 errno = save_errno;
155 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
156 startup);
157 PyErr_Print();
158 PyErr_Clear();
159 }
160 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000161}
162
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200163static void RunInteractiveHook(void)
164{
165 PyObject *sys, *hook, *result;
166 sys = PyImport_ImportModule("sys");
167 if (sys == NULL)
168 goto error;
169 hook = PyObject_GetAttrString(sys, "__interactivehook__");
170 Py_DECREF(sys);
171 if (hook == NULL)
172 PyErr_Clear();
173 else {
174 result = PyObject_CallObject(hook, NULL);
175 Py_DECREF(hook);
176 if (result == NULL)
177 goto error;
178 else
179 Py_DECREF(result);
180 }
181 return;
182
183error:
184 PySys_WriteStderr("Failed calling sys.__interactivehook__\n");
185 PyErr_Print();
186 PyErr_Clear();
187}
188
Thomas Woutersa9773292006-04-21 09:43:23 +0000189
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000190static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000191{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000192 PyObject *module, *runpy, *runmodule, *runargs, *result;
193 runpy = PyImport_ImportModule("runpy");
194 if (runpy == NULL) {
195 fprintf(stderr, "Could not import runpy module\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200196 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000197 return -1;
198 }
199 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
200 if (runmodule == NULL) {
201 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200202 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000203 Py_DECREF(runpy);
204 return -1;
205 }
206 module = PyUnicode_FromWideChar(modname, wcslen(modname));
207 if (module == NULL) {
208 fprintf(stderr, "Could not convert module name to unicode\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200209 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000210 Py_DECREF(runpy);
211 Py_DECREF(runmodule);
212 return -1;
213 }
214 runargs = Py_BuildValue("(Oi)", module, set_argv0);
215 if (runargs == NULL) {
216 fprintf(stderr,
217 "Could not create arguments for runpy._run_module_as_main\n");
Victor Stinner7d36e4f2013-04-10 00:27:23 +0200218 PyErr_Print();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000219 Py_DECREF(runpy);
220 Py_DECREF(runmodule);
221 Py_DECREF(module);
222 return -1;
223 }
224 result = PyObject_Call(runmodule, runargs, NULL);
225 if (result == NULL) {
226 PyErr_Print();
227 }
228 Py_DECREF(runpy);
229 Py_DECREF(runmodule);
230 Py_DECREF(module);
231 Py_DECREF(runargs);
232 if (result == NULL) {
233 return -1;
234 }
235 Py_DECREF(result);
236 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000237}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000238
Victor Stinner4726e402010-10-06 23:24:57 +0000239static int
240RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000241{
Victor Stinner4726e402010-10-06 23:24:57 +0000242 PyObject *argv0 = NULL, *importer, *sys_path;
243 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000244
Victor Stinner4726e402010-10-06 23:24:57 +0000245 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
246 if (argv0 == NULL)
247 goto error;
248
249 importer = PyImport_GetImporter(argv0);
250 if (importer == NULL)
251 goto error;
252
Brett Cannonaa936422012-04-27 15:30:58 -0400253 if (importer == Py_None) {
Victor Stinner4726e402010-10-06 23:24:57 +0000254 Py_DECREF(argv0);
255 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 return -1;
257 }
Victor Stinner4726e402010-10-06 23:24:57 +0000258 Py_DECREF(importer);
259
260 /* argv0 is usable as an import source, so put it in sys.path[0]
261 and import __main__ */
262 sys_path = PySys_GetObject("path");
263 if (sys_path == NULL)
264 goto error;
265 if (PyList_SetItem(sys_path, 0, argv0)) {
266 argv0 = NULL;
267 goto error;
268 }
269 Py_INCREF(argv0);
270
271 sts = RunModule(L"__main__", 0);
272 return sts != 0;
273
274error:
275 Py_XDECREF(argv0);
276 PyErr_Print();
277 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000278}
279
Victor Stinnera62207c2010-08-07 10:57:17 +0000280static int
281run_command(wchar_t *command, PyCompilerFlags *cf)
282{
283 PyObject *unicode, *bytes;
284 int ret;
285
286 unicode = PyUnicode_FromWideChar(command, -1);
287 if (unicode == NULL)
288 goto error;
289 bytes = PyUnicode_AsUTF8String(unicode);
290 Py_DECREF(unicode);
291 if (bytes == NULL)
292 goto error;
293 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
294 Py_DECREF(bytes);
295 return ret != 0;
296
297error:
Victor Stinner398356b2010-08-18 22:23:22 +0000298 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000299 PyErr_Print();
300 return 1;
301}
302
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000303static int
304run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
305{
306 PyObject *unicode, *bytes = NULL;
307 char *filename_str;
308 int run;
309
310 /* call pending calls like signal handlers (SIGINT) */
311 if (Py_MakePendingCalls() == -1) {
312 PyErr_Print();
313 return 1;
314 }
315
316 if (filename) {
317 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
318 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000319 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000320 Py_DECREF(unicode);
321 }
322 if (bytes != NULL)
323 filename_str = PyBytes_AsString(bytes);
324 else {
325 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000326 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000327 }
328 }
329 else
330 filename_str = "<stdin>";
331
332 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
333 Py_XDECREF(bytes);
334 return run != 0;
335}
336
Christian Heimes9cd17752007-11-18 19:35:23 +0000337
Guido van Rossum667d7041995-08-04 04:20:48 +0000338/* Main program */
339
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000340int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000341Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000342{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 int c;
344 int sts;
345 wchar_t *command = NULL;
346 wchar_t *filename = NULL;
347 wchar_t *module = NULL;
348 FILE *fp = stdin;
349 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000350#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000352#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000353 int skipfirstline = 0;
354 int stdin_is_interactive = 0;
355 int help = 0;
356 int version = 0;
357 int saw_unbuffered_flag = 0;
358 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000359
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000361
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 orig_argc = argc; /* For Py_GetArgcArgv() */
363 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000364
Antoine Pitrou86838b02012-02-21 19:03:47 +0100365 /* Hash randomization needed early for all string operations
366 (including -W and -X options). */
Ezio Melottia0dd22e2012-11-23 18:48:32 +0200367 _PyOS_opterr = 0; /* prevent printing the error in 1st pass */
Antoine Pitrou86838b02012-02-21 19:03:47 +0100368 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
369 if (c == 'm' || c == 'c') {
370 /* -c / -m is the last option: following arguments are
371 not interpreter options. */
372 break;
373 }
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500374 if (c == 'E') {
Antoine Pitrou86838b02012-02-21 19:03:47 +0100375 Py_IgnoreEnvironmentFlag++;
376 break;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100377 }
378 }
Antoine Pitrou86838b02012-02-21 19:03:47 +0100379
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500380 Py_HashRandomizationFlag = 1;
Antoine Pitrou86838b02012-02-21 19:03:47 +0100381 _PyRandom_Init();
382
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 PySys_ResetWarnOptions();
Antoine Pitrou86838b02012-02-21 19:03:47 +0100384 _PyOS_ResetGetOpt();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000386 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
387 if (c == 'c') {
388 size_t len;
389 /* -c is the last option; following arguments
390 that look like options are left for the
391 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000392
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000393 len = wcslen(_PyOS_optarg) + 1 + 1;
394 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
395 if (command == NULL)
396 Py_FatalError(
397 "not enough memory to copy -c argument");
398 wcscpy(command, _PyOS_optarg);
399 command[len - 2] = '\n';
400 command[len - 1] = 0;
401 break;
402 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 if (c == 'm') {
405 /* -m is the last option; following arguments
406 that look like options are left for the
407 module to interpret. */
408 module = _PyOS_optarg;
409 break;
410 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000411
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 switch (c) {
413 case 'b':
414 Py_BytesWarningFlag++;
415 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000416
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000417 case 'd':
418 Py_DebugFlag++;
419 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 case 'i':
422 Py_InspectFlag++;
423 Py_InteractiveFlag++;
424 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000426 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 case 'O':
429 Py_OptimizeFlag++;
430 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 case 'B':
433 Py_DontWriteBytecodeFlag++;
434 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 case 's':
437 Py_NoUserSiteDirectory++;
438 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 case 'S':
441 Py_NoSiteFlag++;
442 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 case 'E':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100445 /* Already handled above */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 case 't':
449 /* ignored for backwards compatibility */
450 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 case 'u':
453 Py_UnbufferedStdioFlag = 1;
454 saw_unbuffered_flag = 1;
455 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000456
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000457 case 'v':
458 Py_VerboseFlag++;
459 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000460
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000461 case 'x':
462 skipfirstline = 1;
463 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000464
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000465 case 'h':
466 case '?':
467 help++;
468 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000469
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000470 case 'V':
471 version++;
472 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 case 'W':
475 PySys_AddWarnOption(_PyOS_optarg);
476 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000477
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000478 case 'X':
479 PySys_AddXOption(_PyOS_optarg);
480 break;
481
Georg Brandl9d871192010-12-04 10:47:18 +0000482 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000483 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000484 break;
485
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100486 case 'R':
Benjamin Petersonc9f54cf2012-02-21 16:08:05 -0500487 /* Ignored */
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100488 break;
489
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000491
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000492 default:
493 return usage(2, argv[0]);
494 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000495
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000496 }
497 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000498
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000499 if (help)
500 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000501
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 if (version) {
503 fprintf(stderr, "Python %s\n", PY_VERSION);
504 return 0;
505 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000506
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000507 if (!Py_InspectFlag &&
508 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
509 Py_InspectFlag = 1;
510 if (!saw_unbuffered_flag &&
511 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
512 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000513
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 if (!Py_NoUserSiteDirectory &&
515 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
516 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000517
Philip Jenveye53de3d2010-04-14 03:01:39 +0000518#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
520 *wp != L'\0') {
521 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000522
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000523 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
524 if (buf == NULL)
525 Py_FatalError(
526 "not enough memory to copy PYTHONWARNINGS");
527 wcscpy(buf, wp);
528 for (warning = wcstok(buf, L",");
529 warning != NULL;
530 warning = wcstok(NULL, L",")) {
531 PySys_AddWarnOption(warning);
532 }
533 free(buf);
534 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000535#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000536 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
537 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000538 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000539
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000540 /* settle for strtok here as there's no one standard
541 C89 wcstok */
542 buf = (char *)malloc(strlen(p) + 1);
543 if (buf == NULL)
544 Py_FatalError(
545 "not enough memory to copy PYTHONWARNINGS");
546 strcpy(buf, p);
547 oldloc = strdup(setlocale(LC_ALL, NULL));
548 setlocale(LC_ALL, "");
549 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000550#ifdef __APPLE__
551 /* Use utf-8 on Mac OS X */
552 unicode = PyUnicode_FromString(p);
553#else
Victor Stinner1b579672011-12-17 05:47:23 +0100554 unicode = PyUnicode_DecodeLocale(p, "surrogateescape");
Victor Stinner5c848a82010-09-12 08:00:41 +0000555#endif
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100556 if (unicode == NULL) {
557 /* ignore errors */
558 PyErr_Clear();
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000559 continue;
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100560 }
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000561 PySys_AddWarnOptionUnicode(unicode);
562 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000563 }
564 setlocale(LC_ALL, oldloc);
565 free(oldloc);
566 free(buf);
567 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000568#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000569
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000570 if (command == NULL && module == NULL && _PyOS_optind < argc &&
571 wcscmp(argv[_PyOS_optind], L"-") != 0)
572 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000573#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000574 filename = decc$translate_vms(argv[_PyOS_optind]);
575 if (filename == (char *)0 || filename == (char *)-1)
576 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000577
578#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000579 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000580#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000581 }
Guido van Rossum775af911997-02-14 19:50:32 +0000582
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000583 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000584
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000585#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000586 /* don't translate newlines (\r\n <=> \n) */
587 _setmode(fileno(stdin), O_BINARY);
588 _setmode(fileno(stdout), O_BINARY);
589 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000590#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000591
592 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000593#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000594 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
595 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
596 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000597#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 setbuf(stdin, (char *)NULL);
599 setbuf(stdout, (char *)NULL);
600 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000601#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000602 }
603 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000604#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000605 /* Doesn't have to have line-buffered -- use unbuffered */
606 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
607 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000608#else /* !MS_WINDOWS */
609#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
611 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000612#endif /* HAVE_SETVBUF */
613#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000614 /* Leave stderr alone - it should be unbuffered anyway. */
615 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000616#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000617 else {
618 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
619 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000620#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000621
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000622#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000623 /* On MacOS X, when the Python interpreter is embedded in an
624 application bundle, it gets executed by a bootstrapping script
625 that does os.execve() with an argv[0] that's different from the
626 actual Python executable. This is needed to keep the Finder happy,
627 or rather, to work around Apple's overly strict requirements of
628 the process name. However, we still need a usable sys.executable,
629 so the actual executable path is passed in an environment variable.
630 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
631 script. */
632 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
633 wchar_t* buffer;
Ronald Oussoreneb61f8b2012-08-22 14:24:14 +0200634 size_t len = strlen(p) + 1;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000635
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 buffer = malloc(len * sizeof(wchar_t));
637 if (buffer == NULL) {
638 Py_FatalError(
639 "not enough memory to copy PYTHONEXECUTABLE");
640 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000641
Brett Cannonb94767f2011-02-22 20:15:44 +0000642 mbstowcs(buffer, p, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000643 Py_SetProgramName(buffer);
644 /* buffer is now handed off - do not free */
645 } else {
Vinay Sajip90db6612012-07-17 17:33:46 +0100646#ifdef WITH_NEXT_FRAMEWORK
647 char* pyvenv_launcher = getenv("__PYVENV_LAUNCHER__");
648
649 if (pyvenv_launcher && *pyvenv_launcher) {
650 /* Used by Mac/Tools/pythonw.c to forward
651 * the argv0 of the stub executable
652 */
653 wchar_t* wbuf = _Py_char2wchar(pyvenv_launcher, NULL);
654
655 if (wbuf == NULL) {
656 Py_FatalError("Cannot decode __PYVENV_LAUNCHER__");
657 }
658 Py_SetProgramName(wbuf);
659
660 /* Don't free wbuf, the argument to Py_SetProgramName
661 * must remain valid until the Py_Finalize is called.
662 */
663 } else {
664 Py_SetProgramName(argv[0]);
665 }
666#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000667 Py_SetProgramName(argv[0]);
Vinay Sajip90db6612012-07-17 17:33:46 +0100668#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000669 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000670#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000671 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000672#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000674
Georg Brandl8aa7e992010-12-28 18:30:18 +0000675 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000676 (command == NULL && filename == NULL &&
677 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000678 fprintf(stderr, "Python %s on %s\n",
679 Py_GetVersion(), Py_GetPlatform());
680 if (!Py_NoSiteFlag)
681 fprintf(stderr, "%s\n", COPYRIGHT);
682 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000683
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000684 if (command != NULL) {
685 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
686 _PyOS_optind--;
687 argv[_PyOS_optind] = L"-c";
688 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000689
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000690 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000691 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000693 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000695
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000696 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000697
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000698 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
699 isatty(fileno(stdin))) {
700 PyObject *v;
701 v = PyImport_ImportModule("readline");
702 if (v == NULL)
703 PyErr_Clear();
704 else
705 Py_DECREF(v);
706 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000707
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000708 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000709 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000710 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000711 } else if (module) {
Senthil Kumaranf01a3372012-07-04 19:28:16 -0700712 sts = (RunModule(module, 1) != 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000713 }
714 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000715
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000716 if (filename == NULL && stdin_is_interactive) {
717 Py_InspectFlag = 0; /* do exit on SystemExit */
718 RunStartupFile(&cf);
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200719 RunInteractiveHook();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000720 }
721 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000722
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000723 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000724
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000725 if (filename != NULL) {
726 sts = RunMainFromImporter(filename);
727 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000728
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000730 fp = _Py_wfopen(filename, L"r");
731 if (fp == NULL) {
732 char *cfilename_buffer;
733 const char *cfilename;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100734 int err = errno;
Victor Stinner2f02a512010-11-08 22:43:46 +0000735 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000736 if (cfilename_buffer != NULL)
737 cfilename = cfilename_buffer;
738 else
739 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000740 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100741 argv[0], cfilename, err, strerror(err));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000742 if (cfilename_buffer)
743 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000744 return 2;
745 }
746 else if (skipfirstline) {
747 int ch;
748 /* Push back first newline so line numbers
749 remain the same */
750 while ((ch = getc(fp)) != EOF) {
751 if (ch == '\n') {
752 (void)ungetc(ch, fp);
753 break;
754 }
755 }
756 }
757 {
758 /* XXX: does this work on Win/Win64? (see posix_fstat) */
759 struct stat sb;
760 if (fstat(fileno(fp), &sb) == 0 &&
761 S_ISDIR(sb.st_mode)) {
762 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
763 fclose(fp);
764 return 1;
765 }
766 }
767 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000768
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000769 if (sts == -1)
770 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000771 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000772
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000773 /* Check this environment variable at the end, to give programs the
774 * opportunity to set it from Python.
775 */
776 if (!Py_InspectFlag &&
777 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
778 {
779 Py_InspectFlag = 1;
780 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000781
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000782 if (Py_InspectFlag && stdin_is_interactive &&
783 (filename != NULL || command != NULL || module != NULL)) {
784 Py_InspectFlag = 0;
Antoine Pitrou1a6cb302013-05-04 20:08:35 +0200785 RunInteractiveHook();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000786 /* XXX */
787 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
788 }
789
790 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000791
792#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000793 /* Insure++ is a memory analysis tool that aids in discovering
794 * memory leaks and other memory problems. On Python exit, the
795 * interned string dictionaries are flagged as being in use at exit
796 * (which it is). Under normal circumstances, this is fine because
797 * the memory will be automatically reclaimed by the system. Under
798 * memory debugging, it's a huge source of useless noise, so we
799 * trade off slower shutdown for less distraction in the memory
800 * reports. -baw
801 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000802 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000803#endif /* __INSURE__ */
804
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000805 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000806}
807
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000808/* this is gonna seem *real weird*, but if you put some other code between
809 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
810 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000811
Guido van Rossum667d7041995-08-04 04:20:48 +0000812/* Make the *original* argc/argv available to other modules.
813 This is rare, but it is needed by the secureware extension. */
814
815void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000816Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000817{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000818 *argc = orig_argc;
819 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000820}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000821
822#ifdef __cplusplus
823}
824#endif