mirror of https://github.com/python/cpython
bpo-43244: Fix test_peg_generators on Windows (GH-24913)
Don't redefine Py_DebugFlag, it's already defined in pydebug.h which is included by Python.h
This commit is contained in:
parent
e0b4aa0f5c
commit
6af528b4ab
|
@ -2,7 +2,6 @@
|
|||
#include "pegen.h"
|
||||
|
||||
#if defined(Py_DEBUG) && defined(Py_BUILD_CORE)
|
||||
extern int Py_DebugFlag;
|
||||
# define D(x) if (Py_DebugFlag) x;
|
||||
#else
|
||||
# define D(x)
|
||||
|
|
|
@ -31,7 +31,6 @@ EXTENSION_PREFIX = """\
|
|||
#include "pegen.h"
|
||||
|
||||
#if defined(Py_DEBUG) && defined(Py_BUILD_CORE)
|
||||
extern int Py_DebugFlag;
|
||||
# define D(x) if (Py_DebugFlag) x;
|
||||
#else
|
||||
# define D(x)
|
||||
|
|
Loading…
Reference in New Issue