Search code examples
pythondebuggingidebreakpoints

Python Debugging


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


Solution

  • 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.