vote up 3 vote down star
4

I'm debugging my Python code in Eclipse using the Pydev plugin. I'm able to open a Pydev console and it gives me two options: "Console for currently active editor" and "Python console". However none of them is useful to inspect current variable status after a breakpoint.

For example, the code stopped at a breakpoint and I want to inspect an "action" variable using the console. However my variables are not available. How can I do things like "dir(action)", etc? (even if it is not using a console).

flag

4 Answers

vote up 2 vote down

This feature is specific to the non-free version, "Pydev Extensions". It is documented here:

http://fabioz.com/pydev/manual_adv_debug_console.html

link|flag
vote up 1 vote down

Double click on "action" or any other variable.

ctrl+shift+D

And if you're using watches, I cant imagine better interaction. You are able to see every change.

link|flag
Thanks, but I imagined a better one: interactive console with visibility of the debugging scope. It is possible in other IDEs. – ricafeal Nov 7 '08 at 10:40
vote up 0 vote down

I'm able to do something using watches, but it is not interactive enough. Any ideas about an interactive console then?

link|flag
vote up 0 vote down

When I set a break point and hit F11 Eclipse launches the debugger and prompts to open the "Debug Perspective". You can then open the Window-->Show View --> Expressions which opens the expressions view, you can then right click in the Expressions view windows and choose "Add Watch Expression" to add any expression(such as dir) Conversely I was also able to type in dir(some expression) in the PyDev console and get the same effect. I'm using PyDev 1.4.6.2788

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.