summaryrefslogtreecommitdiffstats
path: root/Objects/object.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 /Objects/object.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 'Objects/object.c')
-rw-r--r--Objects/object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 4fa488e..c759ccc 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -8,6 +8,7 @@
#include "pycore_object.h"
#include "pycore_pyerrors.h"
#include "pycore_pylifecycle.h"
+#include "pycore_pymem.h" // _PyMem_IsPtrFreed()
#include "pycore_pystate.h" // _PyThreadState_GET()
#include "frameobject.h"
#include "interpreteridobject.h"