diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-05-25 19:37:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 19:37:56 (GMT) |
commit | 31084be618b6b7602d58e4d21ceef2e65ed8ef1b (patch) | |
tree | fa78579592127c86ca7190caed2af07079c47ff7 /Parser | |
parent | 82da2c3eb4d69b55d9e300ab5d9c1d22bd09b9cd (diff) | |
download | cpython-31084be618b6b7602d58e4d21ceef2e65ed8ef1b.zip cpython-31084be618b6b7602d58e4d21ceef2e65ed8ef1b.tar.gz cpython-31084be618b6b7602d58e4d21ceef2e65ed8ef1b.tar.bz2 |
bpo-40750: Do not expand the new parser debug flags if Py_BUILD_CORE is not defined (GH-20393)
(cherry picked from commit deb4355a37e41edf1199920789fe9572c1fb43c2)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/pegen/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pegen/parse.c b/Parser/pegen/parse.c index 2b73547..b639241 100644 --- a/Parser/pegen/parse.c +++ b/Parser/pegen/parse.c @@ -1,7 +1,7 @@ // @generated by pegen.py from ./Grammar/python.gram #include "pegen.h" -#ifdef Py_DEBUG +#if defined(Py_DEBUG) && defined(Py_BUILD_CORE) extern int Py_DebugFlag; #define D(x) if (Py_DebugFlag) x; #else |