0

When in PDB sessions, the function "help" gets overridden to show help on just debugger commands rather being able to do what the default python help function can do. Is there a way to access the original help function?

seewalker
  • 1,123
  • 10
  • 18

1 Answers1

3

Use an exclamation mark before the line to run:

(Pdb) !help(urllib2)
lapinkoira
  • 8,320
  • 9
  • 51
  • 94