diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-02-05 10:12:14 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-02-05 10:12:14 -0500 |
commit | 16d86aa69d34450f602e31d0068920eba66d4fe5 (patch) | |
tree | 444024c14c2fca97712cf4f65e58987402e5c1d4 | |
parent | 003472a6457e5546bff73caae12ed273130b753d (diff) | |
download | cpython-git-16d86aa69d34450f602e31d0068920eba66d4fe5.tar.gz |
update symbol.py for yield from grammar changes (closes #17132)
-rwxr-xr-x | Lib/symbol.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/symbol.py b/Lib/symbol.py index a702ed3e62..34143b5d8e 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 = {} @@ -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. |