summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-18 23:59:26 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-18 23:59:26 (GMT)
commit618af4b3ef08d5eee9c36fafd4cd57c54573f95e (patch)
treecb0f454957fd2753085a20941bf5fcc85beb4e22 /Include/Python.h
parent75aa0d6abe706ef4048c1d38c2cde28d8eb924e3 (diff)
downloadcpython-618af4b3ef08d5eee9c36fafd4cd57c54573f95e.zip
cpython-618af4b3ef08d5eee9c36fafd4cd57c54573f95e.tar.gz
cpython-618af4b3ef08d5eee9c36fafd4cd57c54573f95e.tar.bz2
Include pystate.h earlier so it can be referenced by ceval.h.
Diffstat (limited to 'Include/Python.h')
-rw-r--r--Include/Python.h4
1 files changed, 2 insertions, 2 deletions
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 @@ 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))