diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-17 11:32:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-17 11:32:43 (GMT) |
commit | 978e37bb5f979cccce36613637ac2d94b43c71b2 (patch) | |
tree | 52f7eb072bacae81a0ab7a20f8875f5c01861124 /Python/thread.c | |
parent | 0453e494b6e23c876c1bb097966f2c68ec72fada (diff) | |
download | cpython-978e37bb5f979cccce36613637ac2d94b43c71b2.zip cpython-978e37bb5f979cccce36613637ac2d94b43c71b2.tar.gz cpython-978e37bb5f979cccce36613637ac2d94b43c71b2.tar.bz2 |
gh-131238: Add explicit includes to pycore headers (#131257)
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c index b31d1dc..4ff5f11 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -8,8 +8,9 @@ #include "Python.h" #include "pycore_ceval.h" // _PyEval_MakePendingCalls() #include "pycore_pystate.h" // _PyInterpreterState_GET() -#include "pycore_structseq.h" // _PyStructSequence_FiniBuiltin() #include "pycore_pythread.h" // _POSIX_THREADS +#include "pycore_runtime.h" // _PyRuntime +#include "pycore_structseq.h" // _PyStructSequence_FiniBuiltin() #ifndef DONT_HAVE_STDIO_H # include <stdio.h> |