diff options
author | Barry Warsaw <barry@python.org> | 2000-05-02 19:18:59 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-05-02 19:18:59 +0000 |
commit | a66fb60fc0d0da84ebaa3c581c4dceab7b3ef558 (patch) | |
tree | 3374feaee781bcb244746613e2fdbdc1367a3623 /Python/pythonrun.c | |
parent | 2f46c558f1b1b793c589770ee2777e6353032199 (diff) | |
download | cpython-a66fb60fc0d0da84ebaa3c581c4dceab7b3ef558.tar.gz |
Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C
API consistency, but nothing sets it or checks it now.
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 a4c986ef6a..49e616e92f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -86,7 +86,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 = 1; /* Needed by bltinmodule.c */ +int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */ int Py_FrozenFlag; /* Needed by getpath.c */ int Py_UnicodeFlag = 0; /* Needed by compile.c */ |