summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-11-25 14:37:43 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-11-25 14:37:43 (GMT)
commit073f0673697380a00dc2067ab3a999354893df51 (patch)
treeea7fc1d821d1aeaf0d8f7ca68ac22545ab63925f /Parser
parentab56710989745ff11c10205ea993c2e423c22f75 (diff)
parentded35aeb9d5ae1671174f10c0ae8a7166693b17c (diff)
downloadcpython-073f0673697380a00dc2067ab3a999354893df51.zip
cpython-073f0673697380a00dc2067ab3a999354893df51.tar.gz
cpython-073f0673697380a00dc2067ab3a999354893df51.tar.bz2
Issue #16546: merge fix from 3.3
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Python.asdl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl
index 6b06dec..c24d840 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -60,7 +60,7 @@ module Python
| GeneratorExp(expr elt, comprehension* generators)
-- the grammar constrains where yield expressions can occur
| Yield(expr? value)
- | YieldFrom(expr? value)
+ | YieldFrom(expr value)
-- need sequences for compare to distinguish between
-- x < 4 < 3 and (x < 4) < 3
| Compare(expr left, cmpop* ops, expr* comparators)