MCPcopy Index your code
hub / github.com/ipython/ipython / pinfo2

Method pinfo2

IPython/core/magics/namespace.py:62–67  ·  view source on GitHub ↗

Provide extra detailed information about an object. '%pinfo2 object' is just a synonym for object?? or ??object.

(self, parameter_s='', namespaces=None)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_inspectMethod · 0.80

Tested by

no test coverage detected