Include pystate.h earlier so it can be referenced by ceval.h.
diff --git a/Include/Python.h b/Include/Python.h
index a6b08f8..96fc1f4 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -87,6 +87,8 @@
 #include "pyerrors.h"
 #include "mymalloc.h"
 
+#include "pystate.h"
+
 #include "modsupport.h"
 #include "ceval.h"
 #include "pythonrun.h"
@@ -95,8 +97,6 @@
 #include "import.h"
 #include "bltinmodule.h"
 
-#include "pystate.h"
-
 #include "abstract.h"
 
 #define PyArg_GetInt(v, a)	PyArg_Parse((v), "i", (a))