You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
14 lines
194 B
Python
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
|