Menu

#437 code completion doesn't work for inherited class

1.2.7
closed-fixed
5
2007-02-24
2007-02-24
No

Currently, in pydev, code completion doesn't work for classes in many use case scenarios.

The details are mentioned in the following message thread:
http://sourceforge.net/forum/message.php?msg_id=4176432

Thanks,
Ritesh

Discussion

  • Fabio Zadrozny

    Fabio Zadrozny - 2007-02-24
    • status: open --> closed-fixed
     
  • Fabio Zadrozny

    Fabio Zadrozny - 2007-02-24

    Logged In: YES
    user_id=617340
    Originator: NO

    Fixed for 1.2.8

    The tests for it are below (I think those summarize the whole thread):

    class Foo(object):
    def method10(self):
    pass

    def some_function():
    class Starter(Foo):
    def m1(self):
    pass
    global s
    s = Starter()
    s.|<-- code-completion works here now
    Starter.|<-- code-completion works here now

    def foo():
    s.|<-- code-completion works here now

     
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.