FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/pydebug.h at pythoncapi · pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
pydebug.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (36 loc) · 1.19 KB
Breadcrumbs
cpython
/
Include
/
pydebug.h
Copy path
File metadata and controls
40 lines (36 loc) · 1.19 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
#ifndef
Py_LIMITED_API
#ifndef
Py_PYDEBUG_H
#define
Py_PYDEBUG_H
#ifdef
__cplusplus
extern
"C"
{
#endif
/* These global variable are defined in pylifecycle.c */
/* XXX (ncoghlan): move these declarations to pylifecycle.h? */
PyAPI_DATA
(
int
)
Py_DebugFlag
;
PyAPI_DATA
(
int
)
Py_VerboseFlag
;
PyAPI_DATA
(
int
)
Py_QuietFlag
;
PyAPI_DATA
(
int
)
Py_InteractiveFlag
;
PyAPI_DATA
(
int
)
Py_InspectFlag
;
PyAPI_DATA
(
int
)
Py_OptimizeFlag
;
PyAPI_DATA
(
int
)
Py_NoSiteFlag
;
PyAPI_DATA
(
int
)
Py_BytesWarningFlag
;
PyAPI_DATA
(
int
)
Py_FrozenFlag
;
PyAPI_DATA
(
int
)
Py_IgnoreEnvironmentFlag
;
PyAPI_DATA
(
int
)
Py_DontWriteBytecodeFlag
;
PyAPI_DATA
(
int
)
Py_NoUserSiteDirectory
;
PyAPI_DATA
(
int
)
Py_UnbufferedStdioFlag
;
PyAPI_DATA
(
int
)
Py_HashRandomizationFlag
;
PyAPI_DATA
(
int
)
Py_IsolatedFlag
;
#ifdef
MS_WINDOWS
PyAPI_DATA
(
int
)
Py_LegacyWindowsFSEncodingFlag
;
PyAPI_DATA
(
int
)
Py_LegacyWindowsStdioFlag
;
#endif
/* this is a wrapper around getenv() that pays attention to
Py_IgnoreEnvironmentFlag. It should be used for getting variables like
PYTHONPATH and PYTHONHOME from the environment */
#define
Py_GETENV
(
s
) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_PYDEBUG_H */
#endif
/* Py_LIMITED_API */
Back
|
FazBrowse Home
|
New Git URL