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

Method info

Lib/dis.py:1095–1097  ·  view source on GitHub ↗

Return formatted information about the code object.

(self)

Source from the content-addressed store, hash-verified

1093 )
1094
1095 def info(self):
1096 """Return formatted information about the code object."""
1097 return _format_code_info(self.codeobj)
1098
1099 def dis(self):
1100 """Return a formatted view of the bytecode operations."""

Callers 5

test_infoMethod · 0.95
write_glossary_jsonFunction · 0.45
_make_tarballFunction · 0.45
_make_zipfileFunction · 0.45
log_infoFunction · 0.45

Calls 1

_format_code_infoFunction · 0.85

Tested by 1

test_infoMethod · 0.76