Return formatted information about the code object.
(self)
| 735 | ) |
| 736 | |
| 737 | def info(self): |
| 738 | """Return formatted information about the code object.""" |
| 739 | return _format_code_info(self.codeobj) |
| 740 | |
| 741 | def dis(self): |
| 742 | """Return a formatted view of the bytecode operations.""" |
no test coverage detected