From 999e5e921e0da9251d235de6fc7916d349e2bfe4 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 3 Oct 1997 19:46:02 +0000 Subject: Initialize Py_UseClassExceptionsFlag to 1. --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index dfdc711..7398dc2 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; -- cgit v0.12