I'd like to have the interactivity of pdb, but also need to use python's help function to introspect objects/methods that I am not familiar with using.
How can I use python's help() from pdb?
everything I try gives me:
(Pdb) help(help)
*** No help on (help)
(Pdb) help(list())
*** No help on (list())