ipdb debugger
Date: January 10th 2016
Last updated: January 10th 2016
ipdb is basically pdb with syntax highlighting. Use commands from pdb like u (up) and d (down) to move around a call stack and n to process a single step.
Quick start commands:
| command | reference |
|---|---|
| jump or use j | Jump to line eg. jump 22 (only inside a block) |
| list or use l | Prints extra lines. Shows relative position in the stack. |
| restart | Go back to the beginning. |
Resources: