From 95c745b5fc0d59bf055fc0a09214f6919134b941 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 6 Feb 1998 22:27:46 +0000 Subject: [PATCH] - Add Py_FrozenFlag, intended to suppress error messages fron getpath.c in frozen binaries. --- Include/pydebug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/pydebug.h b/Include/pydebug.h index 91bf099b644..3fe758ae56f 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 *));