remove double-quote preference here....

it is now done in xdis which is where it is better done
This commit is contained in:
rocky
2024-02-18 08:21:07 -05:00
parent 40c4764492
commit 3e00880c1b
3 changed files with 2 additions and 14 deletions

View File

@@ -39,7 +39,7 @@ import xdis.opcodes.opcode_37 as op3
from xdis import Instruction, instruction_size, iscode
from xdis.bytecode import _get_const_info
from uncompyle6.scanner import Scanner, Token, prefer_double_quote
from uncompyle6.scanner import Scanner, Token
globals().update(op3.opmap)
@@ -386,7 +386,6 @@ class Scanner37Base(Scanner):
pattr = "<code_object " + const.co_name + ">"
elif isinstance(const, str):
opname = "LOAD_STR"
pattr = prefer_double_quote(inst.argrepr)
else:
if isinstance(inst.arg, int) and inst.arg < len(co.co_consts):
argval, _ = _get_const_info(inst.arg, co.co_consts)