Web-PDB Shortcuts:
- F10: proceed to the next line, staying on the current level.
- F11: proceed to the next line and step into a function, if any.
- Shift + F11: step out of the current function.
- F8: continue execution.
- ↑: scroll command history from latest to earliest (in the command field).
- ↓: scroll command history from earliest to latest (in the command field).
- Enter: send a PDB command (from the command field).
- Click on a line number in Current file box:
set or remove a breakpoint.
Essential PDB Commands:
p (var)
: print the value of a variable or a Python expression.
pp (var)
: print the value of a variable or a Python expression with
pretty formatting.
!(expr)
: execute a Python expression in the current context.
h
: print the list of available commands.
h (command)
: print quick help for a given command.
restart [args]
: restart the program with the given arguments (optional).
q
: terminate the current program and quit.
You can find more detailed info on PDB commands and usage in the
official Python documentation.
This program is distributed under the terms of
MIT License.
© 2016 Roman Miroshnychenko.