You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
10 lines
300 B
Python
10 lines
300 B
Python
# Issue #173. Bug is that 2.7.5 omits POP_BLOCK in
|
|
# in later 2.7 grammar.
|
|
# while1stmt ::= SETUP_LOOP l_stmts_opt JUMP_BACK COME_FROM
|
|
# while1stmt ::= SETUP_LOOP l_stmts_opt CONTINUE COME_FROM
|
|
# which is included in later code generation
|
|
ms = 0
|
|
if ms == 1:
|
|
while 1:
|
|
pass
|