Provide detailed information about an object. The debugger interface to %pinfo, i.e., obj?.
(self, arg)
| 629 | self.shell.find_line_magic('pfile')(arg, namespaces=namespaces) |
| 630 | |
| 631 | def do_pinfo(self, arg): |
| 632 | """Provide detailed information about an object. |
| 633 | |
| 634 | The debugger interface to %pinfo, i.e., obj?.""" |
| 635 | namespaces = [('Locals', self.curframe.f_locals), |
| 636 | ('Globals', self.curframe.f_globals)] |
| 637 | self.shell.find_line_magic('pinfo')(arg, namespaces=namespaces) |
| 638 | |
| 639 | def do_pinfo2(self, arg): |
| 640 | """Provide extra detailed information about an object. |
nothing calls this directly
no test coverage detected