You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
6 lines
243 B
Python
6 lines
243 B
Python
# Bug is turning a JUMP_BACK for a CONTINUE so for has no JUMP_BACK.
|
|
# Also there is no POP_BLOCK since there isn't anything in the loop.
|
|
# In the future when we have better control flow, we might redo all of this.
|
|
for i in range(2):
|
|
pass
|