summaryrefslogtreecommitdiff
path: root/Include/pydebug.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-02-06 22:27:46 +0000
committerGuido van Rossum <guido@python.org>1998-02-06 22:27:46 +0000
commitb485285e829bed8d9f4a9ab9b908d72836f1bc8c (patch)
treeff542222359163dfec820514d73fff03d8df6862 /Include/pydebug.h
parent6751ce7dc34efb1ddf1f8499414f8327b4caa0b1 (diff)
downloadcpython-b485285e829bed8d9f4a9ab9b908d72836f1bc8c.tar.gz
- 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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h
index 91bf099b64..3fe758ae56 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 *));