code completion in pydev (eclipse) when the variable type is unknown -
for varible type unknown (not during runtime), codecomplete following statement working
assert isinstance(variable, class) variable. {codecomplete works}
while following statement not
assert isinstance(self.variable, class) self.variable. {codecomplete not working}
how make codecomplete work "self.*" variables?
Comments
Post a Comment