You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
2.6 bug in handling jumps to jumps
This commit is contained in:
@@ -363,6 +363,9 @@ class Scanner2(scan.Scanner):
|
||||
if self.version <= 2.6 and self.code[jmp] in self.jump_forward:
|
||||
self.not_continue.add(jmp)
|
||||
jmp = self.get_target(jmp)
|
||||
if jmp not in self.pop_jump_if | self.jump_forward:
|
||||
self.ignore_if.add(except_match)
|
||||
return None
|
||||
|
||||
self.ignore_if.add(except_match)
|
||||
self.not_continue.add(jmp)
|
||||
|
Reference in New Issue
Block a user