Author: Romain Guillebert <romain...@gmail.com>
Branch: py3k
Changeset: r51474:8339f8cc6ae1
Date: 2012-01-19 11:06 +0100
http://bitbucket.org/pypy/pypy/changeset/8339f8cc6ae1/

Log:    yield from is a python 3.3 construct

diff --git a/pypy/interpreter/pyparser/data/Grammar3.2 
b/pypy/interpreter/pyparser/data/Grammar3.2
--- a/pypy/interpreter/pyparser/data/Grammar3.2
+++ b/pypy/interpreter/pyparser/data/Grammar3.2
@@ -136,5 +136,4 @@
 # not used in grammar, but may appear in "node" passed from Parser to Compiler
 encoding_decl: NAME
 
-yield_expr: 'yield' [yield_arg]
-yield_arg: 'from' test | testlist
+yield_expr: 'yield' [testlist]
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to