summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-11-25 12:35:22 (GMT)
committerGitHub <noreply@github.com>2021-11-25 12:35:22 (GMT)
commitce5a6460aebdc51a810d2755782fe8f0d7918ec2 (patch)
tree519ba975034568d4acde458964675f73d416ff31 /Include/Python.h
parent632d589afcaac3b8441c8c042a98e1ae452533e0 (diff)
downloadcpython-ce5a6460aebdc51a810d2755782fe8f0d7918ec2.zip
cpython-ce5a6460aebdc51a810d2755782fe8f0d7918ec2.tar.gz
cpython-ce5a6460aebdc51a810d2755782fe8f0d7918ec2.tar.bz2
bpo-39026: Fix Python.h when building with Xcode (GH-29488) (GH-29732)
Fix Python.h to build C extensions with Xcode: remove a relative include from Include/cpython/pystate.h. (cherry picked from commit 4ae26b9c1d0c33e3db92c6f305293f9240dea358)
Diffstat (limited to 'Include/Python.h')
-rw-r--r--Include/Python.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/Python.h b/Include/Python.h
index a83befa..d3186c3 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -106,6 +106,7 @@
#include "sliceobject.h"
#include "cellobject.h"
#include "iterobject.h"
+#include "cpython/initconfig.h"
#include "genobject.h"
#include "descrobject.h"
#include "genericaliasobject.h"
@@ -118,8 +119,6 @@
#include "codecs.h"
#include "pyerrors.h"
-
-#include "cpython/initconfig.h"
#include "pythread.h"
#include "pystate.h"
#include "context.h"