bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)
Move non-limited C API headers pyarena.h and pyctype.h
into Include/cpython/ directory.
diff --git a/Include/Python.h b/Include/Python.h
index 76ead9e..c71a71f 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -137,7 +137,7 @@
#include "pystate.h"
#include "context.h"
-#include "pyarena.h"
+#include "cpython/pyarena.h"
#include "modsupport.h"
#include "compile.h"
#include "pythonrun.h"
@@ -154,7 +154,7 @@
#include "eval.h"
-#include "pyctype.h"
+#include "cpython/pyctype.h"
#include "pystrtod.h"
#include "pystrcmp.h"
#include "fileutils.h"