From 618af4b3ef08d5eee9c36fafd4cd57c54573f95e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 18 Jul 1997 23:59:26 +0000 Subject: [PATCH] Include pystate.h earlier so it can be referenced by ceval.h. --- Include/Python.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/Python.h b/Include/Python.h index a6b08f894bd..96fc1f4d7e2 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -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))