MCPcopy Index your code
hub / github.com/python/cpython / _disassemble_str

Function _disassemble_str

Lib/dis.py:928–930  ·  view source on GitHub ↗

Compile the source string, then disassemble the code object.

(source, **kwargs)

Source from the content-addressed store, hash-verified

926 formatter.print_exception_table(exception_entries)
927
928def _disassemble_str(source, **kwargs):
929 """Compile the source string, then disassemble the code object."""
930 _disassemble_recursive(_try_compile(source, '<dis>'), **kwargs)
931
932disco = disassemble # XXX For backwards compatibility
933

Callers 1

disFunction · 0.85

Calls 2

_disassemble_recursiveFunction · 0.85
_try_compileFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…