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/ast.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/ast.c')
-rw-r--r-- | Python/ast.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/ast.c b/Python/ast.c index 597df5b..7ee8843 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -5,9 +5,10 @@ #include "Python.h" #include "pycore_ast.h" // asdl_stmt_seq #include "pycore_pystate.h" // _PyThreadState_GET() +#include "pycore_unicodeobject.h" // _PyUnicode_EqualToASCIIString() + +#include <stdbool.h> // bool -#include <assert.h> -#include <stdbool.h> #define ENTER_RECURSIVE() \ if (Py_EnterRecursiveCall(" during compilation")) { \ |