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:
Victor Stinner 2021-03-18 09:54:13 +01:00 committed by GitHub
parent e0b4aa0f5c
commit 6af528b4ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View file

@ -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)

View file

@ -31,7 +31,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)