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

I would like to know if pydev uses docstrings decorators to propose correct
auto completion, E.G. :

class Foo() :
    def __init__(self) :
        self.pwet = "pwet";

    def pwet(self, str) :
        print(str);

class Bar() :
    """
    @type foo: Foo()
    """
    def __init__(self, foo) :
        self.foo = foo;

foo = Foo()
bar = Bar(foo);

            ___________
bar.foo.| o pwet(str) |
            |__________|
             

______________________________________________________________________
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

------------------------------------------------------------------------------
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to