We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dcb9fb commit 1d68ba7Copy full SHA for 1d68ba7
2 files changed
trepan/lib/disassemble.py
@@ -370,9 +370,9 @@ def null_print(x):
370
hasattr(opc, "opcode_extended_fmt")
371
and opc.opname[op] in opc.opcode_extended_fmt
372
):
373
- new_repr = f"""["{opc.opcode_extended_fmt[opc.opname[op]](
+ new_repr = f"""{opc.opcode_extended_fmt[opc.opname[op]](
374
opc, list(reversed(instructions))
375
- )}"] {instr.arg}"""
+ )}"""
376
argrepr = new_repr
377
pass
378
elif asm_format in ("extended", "extended-bytes"):
trepan/processor/command/show_subcmd/styles.py
@@ -22,6 +22,7 @@ class ShowStyles(DebuggerSubcommand):
22
23
in_list = True
24
short_help = "Show all pygments style available"
25
+ min_abbrev = len("styles")
26
27
def run(self, args):
28
if len(args) != 0:
0 commit comments