code completion doesn't work for inherited class
Brought to you by:
fabioz
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
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