summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-14 16:30:41 (GMT)
committerGitHub <noreply@github.com>2020-04-14 16:30:41 (GMT)
commite560f90602870601945ea7a4f7770827608817d2 (patch)
treeeb66be613aff34e1450653b455fb9d81689c1429 /Python/ceval.c
parent4cf65a630a8d45bad3fe5cdc4c2632ec64e7ba27 (diff)
downloadcpython-e560f90602870601945ea7a4f7770827608817d2.zip
cpython-e560f90602870601945ea7a4f7770827608817d2.tar.gz
cpython-e560f90602870601945ea7a4f7770827608817d2.tar.bz2
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 77b7a83..505f05c 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -10,7 +10,7 @@
#define PY_LOCAL_AGGRESSIVE
#include "Python.h"
-#include "pycore_abstract.h" // _PyIndex_Check()
+#include "pycore_abstract.h" // _PyIndex_Check()
#include "pycore_call.h"
#include "pycore_ceval.h"
#include "pycore_code.h"
@@ -18,7 +18,8 @@
#include "pycore_object.h"
#include "pycore_pyerrors.h"
#include "pycore_pylifecycle.h"
-#include "pycore_pystate.h" // _PyInterpreterState_GET()
+#include "pycore_pymem.h" // _PyMem_IsPtrFreed()
+#include "pycore_pystate.h" // _PyInterpreterState_GET()
#include "pycore_sysmodule.h"
#include "pycore_tupleobject.h"