Get object info as formatted text
(self, oname, detail_level=0)
| 1775 | return oinspect.object_info(name=oname, found=False) |
| 1776 | |
| 1777 | def object_inspect_text(self, oname, detail_level=0): |
| 1778 | """Get object info as formatted text""" |
| 1779 | return self.object_inspect_mime(oname, detail_level)['text/plain'] |
| 1780 | |
| 1781 | def object_inspect_mime(self, oname, detail_level=0): |
| 1782 | """Get object info as a mimebundle of formatted representations. |