Python 2.4 generator expressions and gen_comp_body

This commit is contained in:
rocky
2016-07-08 18:00:13 -04:00
parent 61535a010d
commit e31f829a56
4 changed files with 9 additions and 2 deletions

View File

@@ -27,6 +27,9 @@ class Python24Parser(Python25Parser):
while1stmt ::= SETUP_LOOP l_stmts JUMP_BACK POP_TOP POP_BLOCK COME_FROM
call_stmt ::= yield
# Python 2.5+ adds POP_TOP
gen_comp_body ::= expr YIELD_VALUE
'''
class Python24ParserSingle(Python25Parser, PythonParserSingle):