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

Method _object_find

IPython/core/interactiveshell.py:1868–1870  ·  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

1866 return getattr(obj, attrname)
1867
1868 def _object_find(self, oname, namespaces=None) -> OInfo:
1869 """Find an object and return a struct with info about it."""
1870 return self._ofind(oname, namespaces)
1871
1872 def _inspect(self, meth, oname: str, namespaces=None, **kw):
1873 """Generic interface to the inspector system.

Callers 3

_inspectMethod · 0.95
object_inspectMethod · 0.95
object_inspect_mimeMethod · 0.95

Calls 1

_ofindMethod · 0.95

Tested by

no test coverage detected