Simplify double quote preference in string

This commit is contained in:
rocky
2024-02-17 19:46:57 -05:00
parent 9f9f6de983
commit 0a08b8d3fc
3 changed files with 6 additions and 6 deletions

View File

@@ -386,7 +386,7 @@ class Scanner37Base(Scanner):
pattr = "<code_object " + const.co_name + ">"
elif isinstance(const, str):
opname = "LOAD_STR"
pattr = prefer_double_quote(inst.argval)
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)