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 2003553 commit 25fb903Copy full SHA for 25fb903
decompyle3/scanners/scanner37base.py
@@ -303,12 +303,8 @@ def tokens_append(j, token):
303
if show_asm in ("both", "before"):
304
print("\n# ---- disassembly:")
305
bytecode.disassemble_bytes(
306
- co.co_code,
307
- varnames=co.co_varnames,
308
- names=co.co_names,
309
- constants=co.co_consts,
310
- cells=bytecode._cell_names,
311
- linestarts=bytecode._linestarts,
+ co,
+ line_starts=bytecode._linestarts,
312
asm_format="extended",
313
filename=co.co_filename,
314
show_source=True,
0 commit comments