Fix Python.h to build C extensions with Xcode: remove a relative
include from Include/cpython/pystate.h.
#include "sliceobject.h"
#include "cpython/cellobject.h"
#include "iterobject.h"
+#include "cpython/initconfig.h"
#include "pystate.h"
#include "cpython/genobject.h"
#include "descrobject.h"
#include "cpython/pytime.h"
#include "codecs.h"
#include "pyerrors.h"
-#include "cpython/initconfig.h"
#include "pythread.h"
#include "cpython/context.h"
#include "modsupport.h"
# 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);
--- /dev/null
+Fix Python.h to build C extensions with Xcode: remove a relative include
+from ``Include/cpython/pystate.h``.