Commit dd162039 authored by Guido van Rossum's avatar Guido van Rossum

Initialize Py_UseClassExceptionsFlag to 1.

parent 3ccb389b
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment