]> granicus.if.org Git - python/commitdiff
Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C
authorBarry Warsaw <barry@python.org>
Tue, 2 May 2000 19:18:59 +0000 (19:18 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 2 May 2000 19:18:59 +0000 (19:18 +0000)
API consistency, but nothing sets it or checks it now.

Python/pythonrun.c

index a4c986ef6a88d2d073f1fef344872e9c810a808d..49e616e92f2492279acbd34d5d7ee3ebccd91809 100644 (file)
@@ -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 */