##// END OF EJS Templates
Update IPython/core/interactiveshell.py...
martinRenou -
Show More
@@ -1675,7 +1675,9 b' class InteractiveShell(SingletonConfigurable):'
1675 with self.builtin_trap:
1675 with self.builtin_trap:
1676 info = self._object_find(oname)
1676 info = self._object_find(oname)
1677 if info.found:
1677 if info.found:
1678 docformat = sphinxify(self.object_inspect(oname)) if self.sphinxify_docstring else None
1678 docformat = (
1679 sphinxify(self.object_inspect(oname)) if self.sphinxify_docstring else None
1680 )
1679 return self.inspector._get_info(
1681 return self.inspector._get_info(
1680 info.obj,
1682 info.obj,
1681 oname,
1683 oname,
General Comments 0
You need to be logged in to leave comments. Login now