From 95e4d589137260530e18ef98a2ed84ee3ec57e12 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 26 Jan 2018 08:20:18 -0800 Subject: String annotations [PEP 563] (#4390) * Document `from __future__ import annotations` * Provide plumbing and tests for `from __future__ import annotations` * Implement unparsing the AST back to string form This is required for PEP 563 and as such only implements a part of the unparsing process that covers expressions. --- Makefile.pre.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.pre.in') diff --git a/Makefile.pre.in b/Makefile.pre.in index 162006a2f9..f58b715378 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -325,6 +325,7 @@ PYTHON_OBJS= \ Python/asdl.o \ Python/ast.o \ Python/ast_opt.o \ + Python/ast_unparse.o \ Python/bltinmodule.o \ Python/ceval.o \ Python/compile.o \ @@ -840,7 +841,7 @@ regen-opcode: $(srcdir)/Include/opcode.h.new $(UPDATE_FILE) $(srcdir)/Include/opcode.h $(srcdir)/Include/opcode.h.new -Python/compile.o Python/symtable.o Python/ast.o: $(srcdir)/Include/graminit.h $(srcdir)/Include/Python-ast.h +Python/compile.o Python/symtable.o Python/ast_unparse.o Python/ast.o: $(srcdir)/Include/graminit.h $(srcdir)/Include/Python-ast.h Python/getplatform.o: $(srcdir)/Python/getplatform.c $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c -- cgit v1.2.1