Debugging Python
I've been looking at debugging python without needing fancy editor features.
pdb
is great for this.
Just put in a breakpoint using import pdb; pdb.set_trace()
anywhere in your
code and debug as much as you want.
I've been looking at debugging python without needing fancy editor features.
pdb
is great for this.
Just put in a breakpoint using import pdb; pdb.set_trace()
anywhere in your
code and debug as much as you want.