Files
python-uncompyle6/test/simple_source/looping/10_for.py
rocky 6a49cd2c69 Bug in for loop with try. Add more of 2.7's COME_FROM statements.
spark.py: add tracing reduce rules. main: reduce cutsines.
Start history
2015-12-21 21:08:08 -05:00

9 lines
155 B
Python

# Tests:
# forstmt ::= SETUP_LOOP expr _for designator
# for_block POP_BLOCK COME_FROM
for a in [1]:
c = 2
for a in range(2):
c = 2