Kaydet (Commit) 999e5e92 authored tarafından Guido van Rossum's avatar Guido van Rossum

Initialize Py_UseClassExceptionsFlag to 1.

üst a7f2e813
...@@ -77,7 +77,7 @@ int Py_DebugFlag; /* Needed by parser.c */ ...@@ -77,7 +77,7 @@ int Py_DebugFlag; /* Needed by parser.c */
int Py_VerboseFlag; /* Needed by import.c */ int Py_VerboseFlag; /* Needed by import.c */
int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */ int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
int Py_NoSiteFlag; /* Suppress 'import site' */ 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; 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