From 3ce096459e348c95c2c3348f8d84720f25c1a4c9 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 2 May 2000 19:18:59 +0000 Subject: [PATCH] Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C API consistency, but nothing sets it or checks it now. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index a4c986ef6a..49e616e92f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -86,7 +86,7 @@ int Py_DebugFlag; /* Needed by parser.c */ int Py_VerboseFlag; /* Needed by import.c */ int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */ int Py_NoSiteFlag; /* Suppress 'import site' */ -int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c */ +int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */ int Py_FrozenFlag; /* Needed by getpath.c */ int Py_UnicodeFlag = 0; /* Needed by compile.c */ -- 2.40.0