The following forum message was posted by fabioz at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/4433544:

PyDev won't analyze/execute code in exec statements, so, it doesn't know that

exec("x = %s.TestRunner()" % script) 

will end up with a 'x' in the namespace.

you could change that to be:

x = eval('%s.TestRunner()' % script) and then it'd at least get 'x' in
the namespace.

Cheers,

Fabio

------------------------------------------------------------------------------
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to