PyDev can't see class from PyTables -
i've installed pytables under windows 7 64 bit , passes tests. both python command prompt , idle can see stringcol class, , python console in eclipse can see it.
however, pydev's autocomplete can't discover class, , editor keeps displaying error says undefined variable: stringcol
despite error, following code runs in eclipse, using pydev
from tables import * if __name__ == '__main__': = stringcol(34) print (a)
i've switched workspaces, created projects scratch, deleted pyc contains class. nothing seems help. how make pydev recognize class sitting supposed to?
have configured "forced builtins" in interpreter. getting-started guide:
additionally, may add other libraries want treat builtins, such os, wxpython, opengl, etc. important, because pydev works on java side static information, modules don't have information when analyzed statically, so, pydev creates shell information on those.
Comments
Post a Comment