diff options
author | Guido van Rossum <guido@python.org> | 1998-02-06 22:27:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-02-06 22:27:46 (GMT) |
commit | 95c745b5fc0d59bf055fc0a09214f6919134b941 (patch) | |
tree | e72466c1130e1f93ba79c7551e39495e72bf141b /Include/pydebug.h | |
parent | a61691e4e9e43da90fa2a5fa1c6764fe49e4dcdb (diff) | |
download | cpython-95c745b5fc0d59bf055fc0a09214f6919134b941.zip cpython-95c745b5fc0d59bf055fc0a09214f6919134b941.tar.gz cpython-95c745b5fc0d59bf055fc0a09214f6919134b941.tar.bz2 |
- Add Py_FrozenFlag, intended to suppress error messages fron
getpath.c in frozen binaries.
Diffstat (limited to 'Include/pydebug.h')
-rw-r--r-- | Include/pydebug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h index 91bf099..3fe758a 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -41,6 +41,7 @@ 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; void Py_FatalError Py_PROTO((char *)); |