From: Jeremy Hylton Date: Tue, 14 Aug 2001 18:57:43 +0000 (+0000) Subject: Add Yield node X-Git-Tag: v2.2a3~565 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34aeeffb62dbe8192cb520e189bb6c98572986da;p=thirdparty%2FPython%2Fcpython.git Add Yield node --- diff --git a/Tools/compiler/ast.txt b/Tools/compiler/ast.txt index 1ca13f2b9ede..21203d2d978c 100644 --- a/Tools/compiler/ast.txt +++ b/Tools/compiler/ast.txt @@ -16,6 +16,7 @@ Raise: expr1, expr2, expr3 TryFinally: body, final TryExcept: body, handlers, else_ Return: value +Yield: value Const: value Print: nodes, dest Printnl: nodes, dest diff --git a/Tools/compiler/compiler/ast.txt b/Tools/compiler/compiler/ast.txt index 1ca13f2b9ede..21203d2d978c 100644 --- a/Tools/compiler/compiler/ast.txt +++ b/Tools/compiler/compiler/ast.txt @@ -16,6 +16,7 @@ Raise: expr1, expr2, expr3 TryFinally: body, final TryExcept: body, handlers, else_ Return: value +Yield: value Const: value Print: nodes, dest Printnl: nodes, dest