Get object info as formatted text
(self, oname, detail_level=0)
| 1915 | return oinspect.object_info(name=oname, found=False) |
| 1916 | |
| 1917 | def object_inspect_text(self, oname, detail_level=0): |
| 1918 | """Get object info as formatted text""" |
| 1919 | return self.object_inspect_mime(oname, detail_level)['text/plain'] |
| 1920 | |
| 1921 | def object_inspect_mime(self, oname, detail_level=0, omit_sections=()): |
| 1922 | """Get object info as a mimebundle of formatted representations. |