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