You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
Small changes...
pysource.py: Bug fix for relative imports. scanner2.py: Remove a debug expression
This commit is contained in:
@@ -301,7 +301,7 @@ class Scanner2(Scanner):
|
||||
j = self.offset2inst_index[offset]
|
||||
target_index = self.offset2inst_index[target]
|
||||
is_continue = (self.insts[target_index-1].opname == 'SETUP_LOOP'
|
||||
and self.insts[j+1].opname == 'JUMP_FORWARD') and False
|
||||
and self.insts[j+1].opname == 'JUMP_FORWARD')
|
||||
if is_continue:
|
||||
op_name = 'CONTINUE'
|
||||
if (offset in self.stmts and
|
||||
|
Reference in New Issue
Block a user