Changeset 388 for python/vendor/current/Python/frozenmain.c
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Python/frozenmain.c
r2 r388 15 15 Py_FrozenMain(int argc, char **argv) 16 16 { 17 18 19 20 17 char *p; 18 int n, sts; 19 int inspect = 0; 20 int unbuffered = 0; 21 21 22 22 Py_FrozenFlag = 1; /* Suppress errors from getpath.c */ 23 23 24 25 26 27 24 if ((p = Py_GETENV("PYTHONINSPECT")) && *p != '\0') 25 inspect = 1; 26 if ((p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0') 27 unbuffered = 1; 28 28 29 30 31 32 33 29 if (unbuffered) { 30 setbuf(stdin, (char *)NULL); 31 setbuf(stdout, (char *)NULL); 32 setbuf(stderr, (char *)NULL); 33 } 34 34 35 35 #ifdef MS_WINDOWS 36 36 PyInitFrozenExtensions(); 37 37 #endif /* MS_WINDOWS */ 38 39 38 Py_SetProgramName(argv[0]); 39 Py_Initialize(); 40 40 #ifdef MS_WINDOWS 41 41 PyWinFreeze_ExeInit(); 42 42 #endif 43 43 44 45 46 44 if (Py_VerboseFlag) 45 fprintf(stderr, "Python %s\n%s\n", 46 Py_GetVersion(), Py_GetCopyright()); 47 47 48 48 PySys_SetArgv(argc, argv); 49 49 50 51 52 53 54 55 56 57 58 50 n = PyImport_ImportFrozenModule("__main__"); 51 if (n == 0) 52 Py_FatalError("__main__ not frozen"); 53 if (n < 0) { 54 PyErr_Print(); 55 sts = 1; 56 } 57 else 58 sts = 0; 59 59 60 61 60 if (inspect && isatty((int)fileno(stdin))) 61 sts = PyRun_AnyFile(stdin, "<stdin>") != 0; 62 62 63 63 #ifdef MS_WINDOWS 64 64 PyWinFreeze_ExeTerm(); 65 65 #endif 66 67 66 Py_Finalize(); 67 return sts; 68 68 }
Note:
See TracChangeset
for help on using the changeset viewer.