Change to flush and close logic to fix #1760556.
[python.git] / Include / pydebug.h
blob3282dc10ec467c4f3b134d75d22d2072ec41ded6
2 #ifndef Py_PYDEBUG_H
3 #define Py_PYDEBUG_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 PyAPI_DATA(int) Py_DebugFlag;
9 PyAPI_DATA(int) Py_VerboseFlag;
10 PyAPI_DATA(int) Py_InteractiveFlag;
11 PyAPI_DATA(int) Py_InspectFlag;
12 PyAPI_DATA(int) Py_OptimizeFlag;
13 PyAPI_DATA(int) Py_NoSiteFlag;
14 PyAPI_DATA(int) Py_UseClassExceptionsFlag;
15 PyAPI_DATA(int) Py_FrozenFlag;
16 PyAPI_DATA(int) Py_TabcheckFlag;
17 PyAPI_DATA(int) Py_UnicodeFlag;
18 PyAPI_DATA(int) Py_IgnoreEnvironmentFlag;
19 PyAPI_DATA(int) Py_DivisionWarningFlag;
20 /* _XXX Py_QnewFlag should go away in 3.0. It's true iff -Qnew is passed,
21 on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
22 true divisions (which they will be in 3.0). */
23 PyAPI_DATA(int) _Py_QnewFlag;
24 /* Warn about 3.x issues */
25 PyAPI_DATA(int) Py_Py3kWarningFlag;
27 /* this is a wrapper around getenv() that pays attention to
28 Py_IgnoreEnvironmentFlag. It should be used for getting variables like
29 PYTHONPATH and PYTHONHOME from the environment */
30 #define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))
32 PyAPI_FUNC(void) Py_FatalError(const char *message);
34 #ifdef __cplusplus
36 #endif
37 #endif /* !Py_PYDEBUG_H */