Compile the source string, then disassemble the code object.
(source, **kwargs)
| 580 | print(f" {entry.start} to {end} -> {entry.target} [{entry.depth}]{lasti}", file=file) |
| 581 | |
| 582 | def _disassemble_str(source, **kwargs): |
| 583 | """Compile the source string, then disassemble the code object.""" |
| 584 | _disassemble_recursive(_try_compile(source, '<dis>'), **kwargs) |
| 585 | |
| 586 | disco = disassemble # XXX For backwards compatibility |
| 587 |
no test coverage detected