From 4ae26b9c1d0c33e3db92c6f305293f9240dea358 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 23 Nov 2021 18:58:57 +0100 Subject: bpo-39026: Fix Python.h when building with Xcode (GH-29488) Fix Python.h to build C extensions with Xcode: remove a relative include from Include/cpython/pystate.h. --- Include/Python.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index 6e3303ac9a3..7260ae5cd0b 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -72,6 +72,7 @@ #include "sliceobject.h" #include "cpython/cellobject.h" #include "iterobject.h" +#include "cpython/initconfig.h" #include "pystate.h" #include "cpython/genobject.h" #include "descrobject.h" @@ -83,7 +84,6 @@ #include "cpython/pytime.h" #include "codecs.h" #include "pyerrors.h" -#include "cpython/initconfig.h" #include "pythread.h" #include "cpython/context.h" #include "modsupport.h" -- cgit v1.2.3