mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r62774 | georg.brandl | 2008-05-06 19:11:42 +0200 (Tue, 06 May 2008) | 2 lines #2773: fix description of 'g' and 'G' formatting spec. ........ r62775 | georg.brandl | 2008-05-06 19:20:54 +0200 (Tue, 06 May 2008) | 2 lines > != (!<). ........ r62785 | benjamin.peterson | 2008-05-07 00:18:11 +0200 (Wed, 07 May 2008) | 2 lines Fix logic error in Python/_warnings.c and add a test to verify ........ r62787 | benjamin.peterson | 2008-05-07 00:31:52 +0200 (Wed, 07 May 2008) | 2 lines Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning ........ r62788 | christian.heimes | 2008-05-07 00:41:46 +0200 (Wed, 07 May 2008) | 1 line Implemented PEP 370 ........
33 lines
951 B
C
33 lines
951 B
C
|
|
#ifndef Py_PYDEBUG_H
|
|
#define Py_PYDEBUG_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
PyAPI_DATA(int) Py_DebugFlag;
|
|
PyAPI_DATA(int) Py_VerboseFlag;
|
|
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_UseClassExceptionsFlag;
|
|
PyAPI_DATA(int) Py_FrozenFlag;
|
|
PyAPI_DATA(int) Py_TabcheckFlag;
|
|
PyAPI_DATA(int) Py_IgnoreEnvironmentFlag;
|
|
PyAPI_DATA(int) Py_DivisionWarningFlag;
|
|
PyAPI_DATA(int) Py_DontWriteBytecodeFlag;
|
|
PyAPI_DATA(int) Py_NoUserSiteDirectory;
|
|
|
|
/* 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))
|
|
|
|
PyAPI_FUNC(void) Py_FatalError(const char *message);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_PYDEBUG_H */
|