diff options
author | Barry Warsaw <barry@python.org> | 2000-05-02 19:18:59 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-05-02 19:18:59 (GMT) |
commit | 3ce096459e348c95c2c3348f8d84720f25c1a4c9 (patch) | |
tree | 4ac533e8884240b5782050e721326156cdb3afe2 /Python | |
parent | e326b1efe2f2471f7d396fc2326c2ca614ef0433 (diff) | |
download | cpython-3ce096459e348c95c2c3348f8d84720f25c1a4c9.zip cpython-3ce096459e348c95c2c3348f8d84720f25c1a4c9.tar.gz cpython-3ce096459e348c95c2c3348f8d84720f25c1a4c9.tar.bz2 |
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')
-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 a4c986e..49e616e 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 */ |