Python debuggers: Difference between revisions

From wikinotes
No edit summary
 
Line 8: Line 8:
|}
|}


See [[python module notes#Debuggers]] for a complete list
See [[python libraries#Debuggers]] for a complete list
</blockquote><!-- Python Debuggers -->
</blockquote><!-- Python Debuggers -->



Latest revision as of 03:03, 4 September 2021

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