Files
python-uncompyle6/test/simple_source/looping/10_for.py
2019-04-10 11:05:46 -04:00

18 lines
294 B
Python

# Self-checking test.
# Tests:
# for ::= SETUP_LOOP expr for_iter store
# for_block POP_BLOCK COME_FROM
# In 3.8+
# for ::= expr for_iter 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