Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6749434
By: fabioz

Well, when you add things to the builtins, the Pydev code-completion will make
dir(obj) on the objects you are trying to complete, but it'll never try to 
actually
instantiate an object.

So, in case you do: orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID), what Pydev
'sees' is: orb = CORBA.ORB_init and if it's a method, it won't go on with the
code-completion (because it cannot create its instance), and if it's a class
it should make a dir() in the class definition to gather its things.

>From what you describe, it seems correct because many things are there, and
the ones that are not actually seem to come from factory methods and not from
class definitions.

Cheers,

Fabio

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to