Files
python-uncompyle6/test/simple_source/looping/10_for.py
2019-04-10 07:22:43 -04:00

14 lines
194 B
Python

# Tests:
# forstmt ::= SETUP_LOOP expr _for store
# for_block POP_BLOCK COME_FROM
c = 0
for a in [1]:
c += a
assert c == 1, c
for a in range(3):
c += a
assert c == 4, c