Python debuggers

From wikinotes
Revision as of 03:03, 4 September 2021 by Will (talk | contribs) (→‎Python Debuggers)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Python Debuggers

python pdb python's builtin debugger (available everywhere)
python ipdb enhanced version of python's builtin debugger (colours, tab completion)

See python libraries#Debuggers for a complete list

C-Extension Debuggers

lldb debug clang compiled python/extensions
gdb#python debug gcc compiled python/extensions