Find an object and return a struct with info about it.
(self, oname, namespaces=None)
| 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. |
no test coverage detected