##// END OF EJS Templates
Merge pull request #12826 from MrMino/ipdb_set_context_command...
Merge pull request #12826 from MrMino/ipdb_set_context_command IPDB: "context" command

File last commit:

r26338:c5850b0b
r26344:2ab39995 merge
Show More
ipdb-question-marks.rst
16 lines | 660 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / ipdb-question-marks.rst

Show pinfo information in ipdb using "?" and "??"

In IPDB, it is now possible to show the information about an object using "?" and "??", in much the same way it can be done when using the IPython prompt:

ipdb> partial?
Init signature: partial(self, /, *args, **kwargs)
Docstring:
partial(func, *args, **keywords) - new function with partial application
of the given arguments and keywords.
File:           ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
Type:           type
Subclasses:

Previously, "pinfo" or "pinfo2" command had to be used for this purpose.