pydev doesn't know about __name__ or __module__ on imports
Brought to you by:
fabioz
If I define a class 'foo' in a module 'a', I can access 'foo.__name__' or 'foo.__module__' just fine.
But if I make a module 'b', and in it do 'import a; a.foo.__name__', pydev thinks that a.foo.__name__ is an error. Same for '__module__'.