diff options
author | Guido van Rossum <guido@python.org> | 1997-10-03 19:46:02 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-03 19:46:02 +0000 |
commit | dd162039c2d9fcc0937bf5ee61b111a2f0f2e724 (patch) | |
tree | 92f2c84b88613499dfbd6e39a2422ba2e73737b6 /Python/pythonrun.c | |
parent | 3ccb389bd5a36906af4df999174330064827311b (diff) | |
download | cpython-dd162039c2d9fcc0937bf5ee61b111a2f0f2e724.tar.gz |
Initialize Py_UseClassExceptionsFlag to 1.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index dfdc711a70..7398dc2032 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -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; |