I try a couple of Eclipse + PyDev for some of my work. (Eclipse v3.5.0 + PyDev v1.5.6) I could not find a way to set all my variables to the PyDev console (Via the PyDev console → Console for the current active editor) I use simple code to describe the problem, When I step through the code, I don’t I can access my variable "x" from the console. This is viewed on the Variables tab, but this is not quite what I want.
Any help is appreciated.
See my screenshot for a better description:

EDIT:
Suppose by adding simple functionality, for example:
def myfunc(x): return x**x
When I debug a function added to the code, I can easily access myfunc from the console. (Enter myfunc and it will be available after this automatic execution:
>>> from part2.test import myfunc >>> myfunc
Then, when I do myfunc (5), it acts the same as in the Python interpreter. It would be so useful to access variables in a similar way to debug my code. I have large arrays and I do various tests and operations during the debugging process. For example: get my x and execute x.sum (), later make x [:: 10] or transpose to work with other arrays, observe the results, experiment, etc.
Hope there will be a better solution.
python eclipse pydev
Gökhan sever
source share