1

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

eozzy
  • 66,048
  • 104
  • 272
  • 428
  • 1
    A code sample of where you're getting confused would help. You should spend more time writing clear readable code and less time in the debugger. Please post the code that confuses you. – S.Lott Jan 05 '10 at 12:47
  • 1
    http://stackoverflow.com/questions/81584/what-ide-to-use-for-python, searching is not that hard... – RedGlyph Jan 05 '10 at 12:49

4 Answers4

2

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
  • 128,757
  • 147
  • 397
  • 562
1

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

YOU
  • 120,166
  • 34
  • 186
  • 219
0

At the commandline, there's pdb

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

James Polley
  • 7,977
  • 2
  • 29
  • 33
0

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
  • 331
  • 1
  • 9