Staging
v0.5.1
https://github.com/python/cpython
Revision ce76e0a15e2f6f9ac33bfe27ca2deca550821690 authored by Fred Drake on 15 January 2002, 22:00:25 UTC, committed by Fred Drake on 15 January 2002, 22:00:25 UTC
1 parent ee924a9
Raw File
Tip revision: ce76e0a15e2f6f9ac33bfe27ca2deca550821690 authored by Fred Drake on 15 January 2002, 22:00:25 UTC
Set the release version and date.
Tip revision: ce76e0a
pydebug.h

#ifndef Py_PYDEBUG_H
#define Py_PYDEBUG_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) Py_DebugFlag;
extern DL_IMPORT(int) Py_VerboseFlag;
extern DL_IMPORT(int) Py_InteractiveFlag;
extern DL_IMPORT(int) Py_OptimizeFlag;
extern DL_IMPORT(int) Py_NoSiteFlag;
extern DL_IMPORT(int) Py_UseClassExceptionsFlag;
extern DL_IMPORT(int) Py_FrozenFlag;
extern DL_IMPORT(int) Py_TabcheckFlag;
extern DL_IMPORT(int) Py_UnicodeFlag;

DL_IMPORT(void) Py_FatalError(char *message);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYDEBUG_H */
back to top