mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -32,7 +32,7 @@ EXTENSION_PREFIX = """\
|
|||
#include "pegen.h"
|
||||
|
||||
#if defined(Py_DEBUG) && defined(Py_BUILD_CORE)
|
||||
# define D(x) if (Py_DebugFlag) x;
|
||||
# define D(x) if (p->debug) { x; }
|
||||
#else
|
||||
# define D(x)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue