From 4b83f9e38c9452d1bb9fdcbd7f3ae09a68fa0dca Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Mon, 9 May 2022 20:01:08 -0400 Subject: [PATCH] BLD: do not include now private header files As of https://github.com/python/cpython/pull/32385 the header code.h is private but directly included into Python.h --- ast27/Include/compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast27/Include/compile.h b/ast27/Include/compile.h index bb304b7e..50626b30 100644 --- a/ast27/Include/compile.h +++ b/ast27/Include/compile.h @@ -2,7 +2,7 @@ #ifndef Ta27_COMPILE_H #define Ta27_COMPILE_H -#include "code.h" +#include "Python.h" #ifdef __cplusplus extern "C" {