You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
9 lines
155 B
Python
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
|