##// END OF EJS Templates
Merge pull request #13290 from fasiha/sphinxify-contextual-help...
Matthias Bussonnier -
r27096:38c7394b merge
parent child Browse files
Show More
@@ -1813,8 +1813,13 b' class InteractiveShell(SingletonConfigurable):'
1813 with self.builtin_trap:
1813 with self.builtin_trap:
1814 info = self._object_find(oname)
1814 info = self._object_find(oname)
1815 if info.found:
1815 if info.found:
1816 return self.inspector._get_info(info.obj, oname, info=info,
1816 docformat = sphinxify if self.sphinxify_docstring else None
1817 detail_level=detail_level
1817 return self.inspector._get_info(
1818 info.obj,
1819 oname,
1820 info=info,
1821 detail_level=detail_level,
1822 formatter=docformat,
1818 )
1823 )
1819 else:
1824 else:
1820 raise KeyError(oname)
1825 raise KeyError(oname)
General Comments 0
You need to be logged in to leave comments. Login now