diff options
author | Victor Stinner <vstinner@python.org> | 2021-03-17 22:11:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 22:11:03 (GMT) |
commit | b4536e1c6abe4c6219177a89e16575d05ea22f64 (patch) | |
tree | bade8c2412e0b83d00e737ce465214d2033cf5f3 /Python/Python-ast.c | |
parent | e272528bbd5e0b081dbffa73b1a6908f3992d13c (diff) | |
download | cpython-b4536e1c6abe4c6219177a89e16575d05ea22f64.zip cpython-b4536e1c6abe4c6219177a89e16575d05ea22f64.tar.gz cpython-b4536e1c6abe4c6219177a89e16575d05ea22f64.tar.bz2 |
bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 439da8f..59acce7 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -6,7 +6,7 @@ #include "Python.h" #ifdef Py_BUILD_CORE -# include "pycore_ast.h" // struct ast_state +# include "pycore_ast_state.h" // struct ast_state # include "pycore_interp.h" // _PyInterpreterState.ast # include "pycore_pystate.h" // _PyInterpreterState_GET() #else |