Files
python-uncompyle6/test/simple_source/looping/10_for.py
2017-12-01 21:36:23 -05:00

9 lines
150 B
Python

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