diff options
author | Victor Stinner <vstinner@python.org> | 2021-11-23 18:58:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 18:58:57 +0100 |
commit | 4ae26b9c1d0c33e3db92c6f305293f9240dea358 (patch) | |
tree | 4f39c3540bb089e58630e898c812dd547d16339d | |
parent | 5be98e57b3c3b36d1a1176b49c73b8822c6380e7 (diff) | |
download | cpython-git-4ae26b9c1d0c33e3db92c6f305293f9240dea358.tar.gz |
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.
-rw-r--r-- | Include/Python.h | 2 | ||||
-rw-r--r-- | Include/cpython/pystate.h | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/C API/2021-11-09-15-42-11.bpo-39026.sUnYWn.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Include/Python.h b/Include/Python.h index 6e3303ac9a..7260ae5cd0 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" diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h index 9ac0a298ba..5adbf3b495 100644 --- a/Include/cpython/pystate.h +++ b/Include/cpython/pystate.h @@ -2,8 +2,6 @@ # error "this header file must not be included directly" #endif -#include "cpython/initconfig.h" - PyAPI_FUNC(int) _PyInterpreterState_RequiresIDRef(PyInterpreterState *); PyAPI_FUNC(void) _PyInterpreterState_RequireIDRef(PyInterpreterState *, int); diff --git a/Misc/NEWS.d/next/C API/2021-11-09-15-42-11.bpo-39026.sUnYWn.rst b/Misc/NEWS.d/next/C API/2021-11-09-15-42-11.bpo-39026.sUnYWn.rst new file mode 100644 index 0000000000..77a0119792 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2021-11-09-15-42-11.bpo-39026.sUnYWn.rst @@ -0,0 +1,2 @@ +Fix Python.h to build C extensions with Xcode: remove a relative include +from ``Include/cpython/pystate.h``. |