From: Benjamin Peterson Date: Tue, 5 Feb 2013 15:12:14 +0000 (-0500) Subject: update symbol.py for yield from grammar changes (closes #17132) X-Git-Tag: v3.3.1rc1~222 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16d86aa69d34450f602e31d0068920eba66d4fe5;p=thirdparty%2FPython%2Fcpython.git update symbol.py for yield from grammar changes (closes #17132) --- diff --git a/Lib/symbol.py b/Lib/symbol.py index a702ed3e62bd..34143b5d8e4c 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -91,6 +91,7 @@ comp_for = 333 comp_if = 334 encoding_decl = 335 yield_expr = 336 +yield_arg = 337 #--end constants-- sym_name = {} diff --git a/Misc/NEWS b/Misc/NEWS index 122b228ff690..0a746fb66406 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -163,6 +163,8 @@ Core and Builtins Library ------- +- Issue #17132: Update symbol for "yield from" grammar changes. + - Issue #17076: Make copying of xattrs more permissive of missing FS support. Patch by Thomas Wouters.