aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/marshal.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 530c8d0f238..c8a48a55dee 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -9,11 +9,12 @@
#define PY_SSIZE_T_CLEAN
#include "Python.h"
+#include "pycore_call.h" // _PyObject_CallNoArgs()
+#include "pycore_code.h" // _PyCode_New()
+#include "pycore_hashtable.h" // _Py_hashtable_t
#include "longintrepr.h"
#include "code.h"
-#include "marshal.h"
-#include "pycore_hashtable.h"
-#include "pycore_code.h" // _PyCode_New()
+#include "marshal.h" // Py_MARSHAL_VERSION
/*[clinic input]
module marshal