You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
11 lines
211 B
Python
11 lines
211 B
Python
# Tests
|
|
# while1stmt ::= SETUP_LOOP l_stmts JUMP_BACK POP_BLOCK COME_FROM
|
|
# tryfinallystmt ::= SETUP_FINALLY suite_stmts_opt POP_BLOCK
|
|
|
|
try:
|
|
while 1:
|
|
if __file__:
|
|
break
|
|
finally:
|
|
pass
|