Python code snippets
Aug 27, 2020Last updated: Aug 27, 2020
Debugging
pdb
should be the tool for
usual debugging in Python. However, segmentation faults (SIGSEGV) cannot
be handled by pdb
. Use gdb
instead as
(gdb) file python
(gdb) run file.py [args]