DEPRECATED. Compute a dict with detailed information about an object.
(self, obj, oname='', formatter=None, info=None, detail_level=0)
| 683 | page.page(info) |
| 684 | |
| 685 | def info(self, obj, oname='', formatter=None, info=None, detail_level=0): |
| 686 | """DEPRECATED. Compute a dict with detailed information about an object. |
| 687 | """ |
| 688 | if formatter is not None: |
| 689 | warnings.warn('The `formatter` keyword argument to `Inspector.info`' |
| 690 | 'is deprecated as of IPython 5.0 and will have no effects.', |
| 691 | DeprecationWarning, stacklevel=2) |
| 692 | return self._info(obj, oname=oname, info=info, detail_level=detail_level) |
| 693 | |
| 694 | def _info(self, obj, oname='', info=None, detail_level=0) -> dict: |
| 695 | """Compute a dict with detailed information about an object. |