bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)

This commit is contained in:
Victor Stinner 2021-03-17 23:11:03 +01:00 committed by GitHub
parent e272528bbd
commit b4536e1c6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 21 additions and 16 deletions

2
Python/Python-ast.c generated
View file

@ -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