FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Python/frozenmain.c at main · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Python
/
frozenmain.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
98 lines (80 loc) · 2.14 KB
Breadcrumbs
cpython
/
Python
/
frozenmain.c
Copy path
File metadata and controls
98 lines (80 loc) · 2.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Python interpreter main program for frozen scripts */
#include
"Python.h"
#include
"pycore_pystate.h"
// _PyInterpreterState_SetRunningMain()
#ifdef
HAVE_UNISTD_H
# include
<unistd.h>
// isatty()
#endif
#ifdef
MS_WINDOWS
extern
void
PyWinFreeze_ExeInit
(
void
);
extern
void
PyWinFreeze_ExeTerm
(
void
);
extern
int
PyInitFrozenExtensions
(
void
);
#endif
/* Main program */
int
Py_FrozenMain
(
int
argc
,
char
*
*
argv
)
{
PyConfig
config
;
PyConfig_InitPythonConfig
(
&
config
);
// Suppress errors from getpath.c
config
.
pathconfig_warnings
=
0
;
// Don't parse command line options like -E
config
.
parse_argv
=
0
;
PyStatus
status
=
PyConfig_SetBytesArgv
(
&
config
,
argc
,
argv
);
if
(
PyStatus_Exception
(
status
)) {
PyConfig_Clear
(
&
config
);
Py_ExitStatusException
(
status
);
}
const
char
*
p
;
int
inspect
=
0
;
if
((
p
=
Py_GETENV
(
"PYTHONINSPECT"
))
&&
*
p
!=
'\0'
) {
inspect
=
1
;
}
#ifdef
MS_WINDOWS
PyInitFrozenExtensions
();
#endif
/* MS_WINDOWS */
status
=
Py_InitializeFromConfig
(
&
config
);
PyConfig_Clear
(
&
config
);
if
(
PyStatus_Exception
(
status
)) {
Py_ExitStatusException
(
status
);
}
PyInterpreterState
*
interp
=
PyInterpreterState_Get
();
if
(
_PyInterpreterState_SetRunningMain
(
interp
)
<
0
) {
PyErr_Print
();
exit
(
1
);
}
#ifdef
MS_WINDOWS
PyWinFreeze_ExeInit
();
#endif
int
verbose
;
if
(
PyConfig_GetInt
(
"verbose"
,
&
verbose
)
<
0
) {
verbose
=
0
;
PyErr_Clear
();
}
if
(
verbose
) {
fprintf
(
stderr
,
"Python %s\n%s\n"
,
Py_GetVersion
(),
Py_GetCopyright
());
}
int
sts
=
1
;
int
n
=
PyImport_ImportFrozenModule
(
"__main__"
);
if
(
n
==
0
) {
Py_FatalError
(
"the __main__ module is not frozen"
);
}
if
(
n
<
0
) {
PyErr_Print
();
sts
=
1
;
}
else
{
sts
=
0
;
}
if
(
inspect
&&
isatty
((
int
)
fileno
(
stdin
))) {
sts
=
PyRun_AnyFile
(
stdin
,
"<stdin>"
)
!=
0
;
}
#ifdef
MS_WINDOWS
PyWinFreeze_ExeTerm
();
#endif
_PyInterpreterState_SetNotRunningMain
(
interp
);
if
(
Py_FinalizeEx
()
<
0
) {
sts
=
120
;
}
return
sts
;
}
Back
|
FazBrowse Home
|
New Git URL