Expand annotate return to Python 3.4

This commit is contained in:
rocky
2016-10-28 11:33:54 -04:00
parent 9849f06ff6
commit 2e355b6245
6 changed files with 22 additions and 23 deletions

View File

@@ -9,9 +9,9 @@ from uncompyle6.parsers.parse32 import Python32Parser
class Python33Parser(Python32Parser):
def p_33(self, args):
def p_33on(self, args):
"""
# Python 3.3 adds yield from.
# Python 3.3+ adds yield from.
expr ::= yield_from
yield_from ::= expr expr YIELD_FROM
"""