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 /Makefile.pre.in | |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 50bd75c..ee93ab6 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -854,11 +854,11 @@ regen-ast: $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \ $(srcdir)/Parser/Python.asdl \ -H $(srcdir)/Include/Python-ast.h.new \ - -I $(srcdir)/Include/internal/pycore_ast.h.new \ + -I $(srcdir)/Include/internal/pycore_ast_state.h.new \ -C $(srcdir)/Python/Python-ast.c.new $(UPDATE_FILE) $(srcdir)/Include/Python-ast.h $(srcdir)/Include/Python-ast.h.new - $(UPDATE_FILE) $(srcdir)/Include/internal/pycore_ast.h $(srcdir)/Include/internal/pycore_ast.h.new + $(UPDATE_FILE) $(srcdir)/Include/internal/pycore_ast_state.h $(srcdir)/Include/internal/pycore_ast_state.h.new $(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new .PHONY: regen-opcode @@ -1135,6 +1135,7 @@ PYTHON_HEADERS= \ \ $(srcdir)/Include/internal/pycore_abstract.h \ $(srcdir)/Include/internal/pycore_accu.h \ + $(srcdir)/Include/internal/pycore_ast_state.h \ $(srcdir)/Include/internal/pycore_atomic.h \ $(srcdir)/Include/internal/pycore_atomic_funcs.h \ $(srcdir)/Include/internal/pycore_bitutils.h \ |