]> granicus.if.org Git - python/commitdiff
Include pystate.h earlier so it can be referenced by ceval.h.
authorGuido van Rossum <guido@python.org>
Fri, 18 Jul 1997 23:59:26 +0000 (23:59 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 18 Jul 1997 23:59:26 +0000 (23:59 +0000)
Include/Python.h

index a6b08f894bdb05e9464e2eb57ea5c91153e14580..96fc1f4d7e21439f75b74e12e2232e0120c98394 100644 (file)
@@ -87,6 +87,8 @@ PERFORMANCE OF THIS SOFTWARE.
 #include "pyerrors.h"
 #include "mymalloc.h"
 
+#include "pystate.h"
+
 #include "modsupport.h"
 #include "ceval.h"
 #include "pythonrun.h"
@@ -95,8 +97,6 @@ PERFORMANCE OF THIS SOFTWARE.
 #include "import.h"
 #include "bltinmodule.h"
 
-#include "pystate.h"
-
 #include "abstract.h"
 
 #define PyArg_GetInt(v, a)     PyArg_Parse((v), "i", (a))