Provide extra detailed information about an object. '%pinfo2 object' is just a synonym for object?? or ??object.
(self, parameter_s='', namespaces=None)
| 60 | |
| 61 | @line_magic |
| 62 | def pinfo2(self, parameter_s='', namespaces=None): |
| 63 | """Provide extra detailed information about an object. |
| 64 | |
| 65 | '%pinfo2 object' is just a synonym for object?? or ??object.""" |
| 66 | self.shell._inspect('pinfo', parameter_s, detail_level=1, |
| 67 | namespaces=namespaces) |
| 68 | |
| 69 | @skip_doctest |
| 70 | @line_magic |