blob: 45752d07893dea853489589741afbd120c00ecbe [file] [log] [blame]
Guido van Rossum12669741996-05-22 16:38:17 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossum12669741996-05-22 16:38:17 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum12669741996-05-22 16:38:17 +00009******************************************************************/
10
11#ifndef Py_PYDEBUG_H
12#define Py_PYDEBUG_H
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17extern DL_IMPORT(int) Py_DebugFlag;
18extern DL_IMPORT(int) Py_VerboseFlag;
Guido van Rossum3f3a2681997-02-14 19:51:09 +000019extern DL_IMPORT(int) Py_InteractiveFlag;
Guido van Rossume9e47791997-03-03 19:13:54 +000020extern DL_IMPORT(int) Py_OptimizeFlag;
Guido van Rossum3d90af91997-08-29 22:34:00 +000021extern DL_IMPORT(int) Py_NoSiteFlag;
Barry Warsawd5a0ff91997-08-29 22:01:11 +000022extern DL_IMPORT(int) Py_UseClassExceptionsFlag;
Guido van Rossum95c745b1998-02-06 22:27:46 +000023extern DL_IMPORT(int) Py_FrozenFlag;
Guido van Rossum4d856ee1998-04-10 17:59:44 +000024extern DL_IMPORT(int) Py_TabcheckFlag;
Guido van Rossumb16d1972000-05-01 17:55:15 +000025extern DL_IMPORT(int) Py_UnicodeFlag;
Guido van Rossum12669741996-05-22 16:38:17 +000026
Fred Drake5eb6d4e2000-07-08 23:37:28 +000027DL_IMPORT(void) Py_FatalError(char *message);
Guido van Rossum12669741996-05-22 16:38:17 +000028
29#ifdef __cplusplus
30}
31#endif
32#endif /* !Py_PYDEBUG_H */