Quantcast
Viewing all articles
Browse latest Browse all 130

gdb like step by step debugger for Python

Any good debugger for Python that is like gdb so that the code can be executed step by step for debugging purpose? You might check pdb. You can debug a program such as prog.py by invoking it through pdb: python -m pdb prog.py Common gdb commands can be found in pdb: (Pdb) h Documented commands […]

The post gdb like step by step debugger for Python appeared first on SysTutorials.


Viewing all articles
Browse latest Browse all 130

Trending Articles