I’m looking for a debugging tool that will run my Python app, but display which line is currently being processed — like an automatically stepping debugger. Basically I want to see what is going on, but be able to jump in if a traceback occurs.
Share
Winpdb is a good python debugger. It is written in Python under the GPL, so adding the automatic stepping functionality you want should not be too complicated.