views:

102

answers:

4

I'm not sure if 'debugging' is the right word, but I'm looking for a tool/IDE that would show my which statement/block will be executed next in a particular module. This feature I remember was available in Turbo C++ years back so I assume something similar might be available in some Python IDE?

Thanks

+2  A: 

pdb has this feature - there's a nice hands-on tutorial about it here.

pydev, the eclipse python plugin, might help if you're looking for an IDE solution.

Adam Matan
pydev it's really cool
Khelben
pdb is perfect, just what I was looking for! :)
Nimbuz
A: 

At the commandline, there's pdb

In an IDE, Netbeans has a GUI debugger that some people like.

James Polley
A: 

Ulipad IDE's debugging feature is very good, its just works like Turbo C++ IDE's debugger.

S.Mark
A: 

I use Netbeans IDE.. very good (and improving) python support..
you will have to install the python plugin if you download the standard installer..

sarshad