You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
Bugs found in 2.4 branch testing
This commit is contained in:
BIN
test/bytecode_2.3/08_while1_if_continue.pyc
Normal file
BIN
test/bytecode_2.3/08_while1_if_continue.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -7,3 +7,13 @@ def readline (self):
|
||||
continue
|
||||
|
||||
return
|
||||
|
||||
# From 2.4.6 sre.py
|
||||
# Bug in 2.4 and 2.3 was parsing the nested "while 1" with a "break" in it
|
||||
def _parse(a, b, source, state):
|
||||
while 1:
|
||||
if b:
|
||||
while 1:
|
||||
break
|
||||
else:
|
||||
raise
|
||||
|
Reference in New Issue
Block a user