views:

49

answers:

1

I am using Eclipse as a Python IDE. Is there anyway for me to Debug my program and break to an interactive prompt. I am interested in exploring the existing data and running/testing commands.

I believe there has to be a way, but I am so used to compiling languages that I have not been able to find where the options are.

Any ideas?

+1  A: 

You can easily do that by using PDB (Python Debugger) inside a python shell. Look at http://docs.python.org/library/pdb.html for more info.

Anyway I believe Eclipse will let you inspect you data when setting a breakpoint.

nivox
Woops that editor thingy embedded the link... Here's the url in plain text: http://docs.python.org/library/pdb.html
nivox