[Python-checkins] cpython (3.3): update symbol.py for yield from grammar changes (closes #17132)

benjamin.peterson python-checkins at python.org
Tue Feb 5 16:14:18 CET 2013


http://hg.python.org/cpython/rev/23850c3899e8
changeset:   82016:23850c3899e8
branch:      3.3
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Feb 05 10:12:14 2013 -0500
summary:
  update symbol.py for yield from grammar changes (closes #17132)

files:
  Lib/symbol.py |  1 +
  Misc/NEWS     |  2 ++
  2 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/Lib/symbol.py b/Lib/symbol.py
--- a/Lib/symbol.py
+++ b/Lib/symbol.py
@@ -91,6 +91,7 @@
 comp_if = 334
 encoding_decl = 335
 yield_expr = 336
+yield_arg = 337
 #--end constants--
 
 sym_name = {}
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -163,6 +163,8 @@
 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list