Extended Python Debugger 1.23 (Default branch) |
|
|
Extended Python Debugger is a more
complete debugger for Python than the stock pdb.py
debugger. It supports a "restart" command, non-interactive POSIX-like line tracing, command options, disassembly of instructions, and stack traces that give better
information for exec statements. Stepping/nexting
skips over method/function "defs". It tries to
follow gdb's command set unless there is good
reason not to.
License: Python License
Changes:
An experimental feature allows you to drop into a Python or IPython shell (similar to irb for ruby-debug). Parameters are now shown on calls. You can save the current breakpoints and/or settings to a file to be read in during a subsequent debugger session. A gdb-like "annotate" mode was added, improving emacs interaction. Some bugs were fixed and the documentation was updated.
|