[Pydev-users] Error on classes with __getattr__
Brought to you by:
fabioz
From: Magdy S. <py...@al...> - 2006-09-30 14:14:39
|
After updating to pydev extensions 1.2.4, I'm still getting error in two cases: 1- When a parent of the class (not the class itself) overrides __getattr__ . For example, in SQLObject, I get error on the 'q' method in my classes despite that the parent class 'SQLObject' override __getattr__ 2- Attributes of attributes of classes that overrides __getattr__ For example, if 'a' overrides __getattr__, pydev will not show error on 'a.b.c' despite that it will not show error on 'a.b' Regards, Magdy |