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