MCPcopy Create free account
hub / github.com/ipython/ipython / _object_find

Method _object_find

IPython/core/interactiveshell.py:1739–1741  ·  view source on GitHub ↗

Find an object and return a struct with info about it.

(self, oname, namespaces=None)

Source from the content-addressed store, hash-verified

1737 return getattr(obj, attrname)
1738
1739 def _object_find(self, oname, namespaces=None):
1740 """Find an object and return a struct with info about it."""
1741 return Struct(self._ofind(oname, namespaces))
1742
1743 def _inspect(self, meth, oname, namespaces=None, **kw):
1744 """Generic interface to the inspector system.

Callers 3

_inspectMethod · 0.95
object_inspectMethod · 0.95
object_inspect_mimeMethod · 0.95

Calls 2

_ofindMethod · 0.95
StructClass · 0.90

Tested by

no test coverage detected