MCPcopy
hub / github.com/rocky/python-uncompyle6 / deparse_code_with_map

Function deparse_code_with_map

uncompyle6/semantics/linemap.py:63–69  ·  view source on GitHub ↗

Like deparse_code but saves line number correspondences. Deprecated. Use code_deparse_with_map

(*args, **kwargs)

Source from the content-addressed store, hash-verified

61
62
63def deparse_code_with_map(*args, **kwargs):
64 """
65 Like deparse_code but saves line number correspondences.
66 Deprecated. Use code_deparse_with_map
67 """
68 kwargs["walker"] = LineMapWalker
69 return code_deparse(*args, **kwargs)
70
71
72def code_deparse_with_map(*args, **kwargs):

Callers 1

decompileFunction · 0.90

Calls 1

code_deparseFunction · 0.90

Tested by

no test coverage detected