Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
cpython/Include/pythonrun.h at v3.9.2 · python/cpython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
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.4k
Star
76.5k
Code
Issues
5k+
Pull requests
2.6k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
v3.9.2
Breadcrumbs
cpython
/
Include
/
pythonrun.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
217 lines (199 loc) · 7.49 KB
v3.9.2
Breadcrumbs
cpython
/
Include
/
pythonrun.h
Copy path
Top
File metadata and controls
Code
Blame
217 lines (199 loc) · 7.49 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/* Interfaces to parse and execute pieces of python code */
#ifndef
Py_PYTHONRUN_H
#define
Py_PYTHONRUN_H
#ifdef
__cplusplus
extern
"C"
{
#endif
#ifndef
Py_LIMITED_API
PyAPI_FUNC
(
int
)
PyRun_SimpleStringFlags
(
const
char
*
,
PyCompilerFlags
*
);
PyAPI_FUNC
(
int
)
PyRun_AnyFileExFlags
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
closeit
,
PyCompilerFlags
*
flags
);
PyAPI_FUNC
(
int
)
PyRun_SimpleFileExFlags
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
closeit
,
PyCompilerFlags
*
flags
);
PyAPI_FUNC
(
int
)
PyRun_InteractiveOneFlags
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
PyCompilerFlags
*
flags
);
PyAPI_FUNC
(
int
)
PyRun_InteractiveOneObject
(
FILE
*
fp
,
PyObject
*
filename
,
PyCompilerFlags
*
flags
);
PyAPI_FUNC
(
int
)
PyRun_InteractiveLoopFlags
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
PyCompilerFlags
*
flags
);
PyAPI_FUNC
(
struct
_mod
*
)
PyParser_ASTFromString
(
const
char
*
s
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
start
,
PyCompilerFlags
*
flags
,
PyArena
*
arena
);
PyAPI_FUNC
(
struct
_mod
*
)
PyParser_ASTFromStringObject
(
const
char
*
s
,
PyObject
*
filename
,
int
start
,
PyCompilerFlags
*
flags
,
PyArena
*
arena
);
PyAPI_FUNC
(
struct
_mod
*
)
PyParser_ASTFromFile
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
const
char
*
enc
,
int
start
,
const
char
*
ps1
,
const
char
*
ps2
,
PyCompilerFlags
*
flags
,
int
*
errcode
,
PyArena
*
arena
);
PyAPI_FUNC
(
struct
_mod
*
)
PyParser_ASTFromFileObject
(
FILE
*
fp
,
PyObject
*
filename
,
const
char
*
enc
,
int
start
,
const
char
*
ps1
,
const
char
*
ps2
,
PyCompilerFlags
*
flags
,
int
*
errcode
,
PyArena
*
arena
);
#endif
#ifndef
PyParser_SimpleParseString
#define
PyParser_SimpleParseString
(
S
,
B
) \
PyParser_SimpleParseStringFlags(S, B, 0)
#define
PyParser_SimpleParseFile
(
FP
,
S
,
B
) \
PyParser_SimpleParseFileFlags(FP, S, B, 0)
#endif
#ifndef
Py_BUILD_CORE
Py_DEPRECATED
(
3.9
)
#endif
PyAPI_FUNC
(
struct
_node
*
)
PyParser_SimpleParseStringFlags
(
const
char
*
,
int
,
int
);
#if
!defined(
Py_LIMITED_API
)
||
Py_LIMITED_API
+
0
>=
0x03030000
#ifndef
Py_BUILD_CORE
Py_DEPRECATED
(
3.9
)
#endif
PyAPI_FUNC
(
struct
_node
*
)
PyParser_SimpleParseStringFlagsFilename
(
const
char
*
,
const
char
*
,
int
,
int
);
#endif
#ifndef
Py_BUILD_CORE
Py_DEPRECATED
(
3.9
)
#endif
PyAPI_FUNC
(
struct
_node
*
)
PyParser_SimpleParseFileFlags
(
FILE
*
,
const
char
*
,
int
,
int
);
#ifndef
Py_LIMITED_API
PyAPI_FUNC
(
PyObject
*
)
PyRun_StringFlags
(
const
char
*
,
int
,
PyObject
*
,
PyObject
*
,
PyCompilerFlags
*
);
PyAPI_FUNC
(
PyObject
*
)
PyRun_FileExFlags
(
FILE
*
fp
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
start
,
PyObject
*
globals
,
PyObject
*
locals
,
int
closeit
,
PyCompilerFlags
*
flags
);
#endif
#ifdef
Py_LIMITED_API
PyAPI_FUNC
(
PyObject
*
)
Py_CompileString
(
const
char
*
,
const
char
*
,
int
);
#else
#define
Py_CompileString
(
str
,
p
,
s
) Py_CompileStringExFlags(str, p, s, NULL, -1)
#define
Py_CompileStringFlags
(
str
,
p
,
s
,
f
) Py_CompileStringExFlags(str, p, s, f, -1)
PyAPI_FUNC
(
PyObject
*
)
Py_CompileStringExFlags
(
const
char
*
str
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
start
,
PyCompilerFlags
*
flags
,
int
optimize
);
PyAPI_FUNC
(
PyObject
*
)
Py_CompileStringObject
(
const
char
*
str
,
PyObject
*
filename
,
int
start
,
PyCompilerFlags
*
flags
,
int
optimize
);
#endif
PyAPI_FUNC
(
struct
symtable
*
)
Py_SymtableString
(
const
char
*
str
,
const
char
*
filename
,
/* decoded from the filesystem encoding */
int
start
);
#ifndef
Py_LIMITED_API
PyAPI_FUNC
(
const
char
*
)
_Py_SourceAsString
(
PyObject
*
cmd
,
const
char
*
funcname
,
const
char
*
what
,
PyCompilerFlags
*
cf
,
PyObject
*
*
cmd_copy
);
PyAPI_FUNC
(
struct
symtable
*
)
Py_SymtableStringObject
(
const
char
*
str
,
PyObject
*
filename
,
int
start
);
PyAPI_FUNC
(
struct
symtable
*
)
_Py_SymtableStringObjectFlags
(
const
char
*
str
,
PyObject
*
filename
,
int
start
,
PyCompilerFlags
*
flags
);
#endif
PyAPI_FUNC
(
void
)
PyErr_Print
(
void
);
PyAPI_FUNC
(
void
)
PyErr_PrintEx
(
int
);
PyAPI_FUNC
(
void
)
PyErr_Display
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
#ifndef
Py_LIMITED_API
/* A function flavor is also exported by libpython. It is required when
libpython is accessed directly rather than using header files which defines
macros below. On Windows, for example, PyAPI_FUNC() uses dllexport to
export functions in pythonXX.dll. */
PyAPI_FUNC
(
PyObject
*
)
PyRun_String
(
const
char
*
str
,
int
s
,
PyObject
*
g
,
PyObject
*
l
);
PyAPI_FUNC
(
int
)
PyRun_AnyFile
(
FILE
*
fp
,
const
char
*
name
);
PyAPI_FUNC
(
int
)
PyRun_AnyFileEx
(
FILE
*
fp
,
const
char
*
name
,
int
closeit
);
PyAPI_FUNC
(
int
)
PyRun_AnyFileFlags
(
FILE
*
,
const
char
*
,
PyCompilerFlags
*
);
PyAPI_FUNC
(
int
)
PyRun_SimpleString
(
const
char
*
s
);
PyAPI_FUNC
(
int
)
PyRun_SimpleFile
(
FILE
*
f
,
const
char
*
p
);
PyAPI_FUNC
(
int
)
PyRun_SimpleFileEx
(
FILE
*
f
,
const
char
*
p
,
int
c
);
PyAPI_FUNC
(
int
)
PyRun_InteractiveOne
(
FILE
*
f
,
const
char
*
p
);
PyAPI_FUNC
(
int
)
PyRun_InteractiveLoop
(
FILE
*
f
,
const
char
*
p
);
PyAPI_FUNC
(
PyObject
*
)
PyRun_File
(
FILE
*
fp
,
const
char
*
p
,
int
s
,
PyObject
*
g
,
PyObject
*
l
);
PyAPI_FUNC
(
PyObject
*
)
PyRun_FileEx
(
FILE
*
fp
,
const
char
*
p
,
int
s
,
PyObject
*
g
,
PyObject
*
l
,
int
c
);
PyAPI_FUNC
(
PyObject
*
)
PyRun_FileFlags
(
FILE
*
fp
,
const
char
*
p
,
int
s
,
PyObject
*
g
,
PyObject
*
l
,
PyCompilerFlags
*
flags
);
/* Use macros for a bunch of old variants */
#define
PyRun_String
(
str
,
s
,
g
,
l
) PyRun_StringFlags(str, s, g, l, NULL)
#define
PyRun_AnyFile
(
fp
,
name
) PyRun_AnyFileExFlags(fp, name, 0, NULL)
#define
PyRun_AnyFileEx
(
fp
,
name
,
closeit
) \
PyRun_AnyFileExFlags(fp, name, closeit, NULL)
#define
PyRun_AnyFileFlags
(
fp
,
name
,
flags
) \
PyRun_AnyFileExFlags(fp, name, 0, flags)
#define
PyRun_SimpleString
(
s
) PyRun_SimpleStringFlags(s, NULL)
#define
PyRun_SimpleFile
(
f
,
p
) PyRun_SimpleFileExFlags(f, p, 0, NULL)
#define
PyRun_SimpleFileEx
(
f
,
p
,
c
) PyRun_SimpleFileExFlags(f, p, c, NULL)
#define
PyRun_InteractiveOne
(
f
,
p
) PyRun_InteractiveOneFlags(f, p, NULL)
#define
PyRun_InteractiveLoop
(
f
,
p
) PyRun_InteractiveLoopFlags(f, p, NULL)
#define
PyRun_File
(
fp
,
p
,
s
,
g
,
l
) \
PyRun_FileExFlags(fp, p, s, g, l, 0, NULL)
#define
PyRun_FileEx
(
fp
,
p
,
s
,
g
,
l
,
c
) \
PyRun_FileExFlags(fp, p, s, g, l, c, NULL)
#define
PyRun_FileFlags
(
fp
,
p
,
s
,
g
,
l
,
flags
) \
PyRun_FileExFlags(fp, p, s, g, l, 0, flags)
#endif
/* Stuff with no proper home (yet) */
#ifndef
Py_LIMITED_API
PyAPI_FUNC
(
char
*
)
PyOS_Readline
(
FILE
*
,
FILE
*
,
const
char
*
);
#endif
PyAPI_DATA
(
int
) (
*
PyOS_InputHook
)(
void
);
PyAPI_DATA
(
char
)
*
(
*
PyOS_ReadlineFunctionPointer
)(
FILE
*
,
FILE
*
,
const
char
*
);
#ifndef
Py_LIMITED_API
PyAPI_DATA
(
PyThreadState
*
)
_PyOS_ReadlineTState
;
#endif
/* Stack size, in "pointers" (so we get extra safety margins
on 64-bit platforms). On a 32-bit platform, this translates
to an 8k margin. */
#define
PYOS_STACK_MARGIN
2048
#if
defined(
WIN32
)
&&
!defined(
MS_WIN64
)
&&
!defined(
_M_ARM
)
&&
defined(
_MSC_VER
)
&&
_MSC_VER
>=
1300
/* Enable stack checking under Microsoft C */
#define
USE_STACKCHECK
#endif
#ifdef
USE_STACKCHECK
/* Check that we aren't overflowing our stack */
PyAPI_FUNC
(
int
)
PyOS_CheckStack
(
void
);
#endif
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_PYTHONRUN_H */
You can’t perform that action at this time.