]> granicus.if.org Git - python/commitdiff
Initialize Py_UseClassExceptionsFlag to 1.
authorGuido van Rossum <guido@python.org>
Fri, 3 Oct 1997 19:46:02 +0000 (19:46 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 3 Oct 1997 19:46:02 +0000 (19:46 +0000)
Python/pythonrun.c

index dfdc711a707a1f33833bc4e23255ed1a6b5bfa54..7398dc203285112aae9c8667a9298e4e852dc7f0 100644 (file)
@@ -77,7 +77,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; /* Needed by bltinmodule.c */
+int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c */
 
 static int initialized = 0;