diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-19 18:46:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-19 17:46:24 +0000 |
commit | 22706843e0211a42a0e1b9e3b3b2527e9c2f546b (patch) | |
tree | d0c420d1d5abc677ddab41057beb778162211bf4 /Python/gc_free_threading.c | |
parent | a4832f6b9a62771725b159bc7cd6c49fb45e3bc8 (diff) | |
download | cpython-22706843e0211a42a0e1b9e3b3b2527e9c2f546b.tar.gz cpython-22706843e0211a42a0e1b9e3b3b2527e9c2f546b.zip |
gh-131238: Remove many includes from pycore_interp.h (#131472)
Diffstat (limited to 'Python/gc_free_threading.c')
-rw-r--r-- | Python/gc_free_threading.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/gc_free_threading.c b/Python/gc_free_threading.c index 36b6eca1edd..713a48744df 100644 --- a/Python/gc_free_threading.c +++ b/Python/gc_free_threading.c @@ -10,6 +10,7 @@ #include "pycore_object_alloc.h" // _PyObject_MallocWithType() #include "pycore_pystate.h" // _PyThreadState_GET() #include "pycore_tstate.h" // _PyThreadStateImpl +#include "pycore_tuple.h" // _PyTuple_MaybeUntrack() #include "pycore_weakref.h" // _PyWeakref_ClearRef() #include "pydtrace.h" |