mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
gh-93103: Parser uses PyConfig.parser_debug instead of Py_DebugFlag (#93106)
* Replace deprecated Py_DebugFlag with PyConfig.parser_debug in the parser. * Add Parser.debug member. * Add tok_state.debug member. * Py_FrozenMain(): Replace Py_VerboseFlag with PyConfig.verbose.
This commit is contained in:
parent
d2ef66a10b
commit
5115a16831
7 changed files with 14 additions and 4 deletions
|
@ -53,7 +53,7 @@ Py_FrozenMain(int argc, char **argv)
|
|||
PyWinFreeze_ExeInit();
|
||||
#endif
|
||||
|
||||
if (Py_VerboseFlag) {
|
||||
if (_Py_GetConfig()->verbose) {
|
||||
fprintf(stderr, "Python %s\n%s\n",
|
||||
Py_GetVersion(), Py_GetCopyright());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue