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

Popular posts from this blog

How to logout from a login page in asp.net -

Stack level too deep error after upgrade to rails 3.2 and ruby 1.9.3 -