Return formatted information about the code object.
(self)
| 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.""" |