MCPcopy Index your code
hub / github.com/RustPython/RustPython / info

Method info

Lib/dis.py:1087–1089  ·  view source on GitHub ↗

Return formatted information about the code object.

(self)

Source from the content-addressed store, hash-verified

1085 )
1086
1087 def info(self):
1088 """Return formatted information about the code object."""
1089 return _format_code_info(self.codeobj)
1090
1091 def dis(self):
1092 """Return a formatted view of the bytecode operations."""

Callers 4

test_infoMethod · 0.95
_make_tarballFunction · 0.45
_make_zipfileFunction · 0.45
perform_testFunction · 0.45

Calls 1

_format_code_infoFunction · 0.85

Tested by 2

test_infoMethod · 0.76
perform_testFunction · 0.36