__getattr__,__getattribute__????
class Foo(object):
def __getattr__(sel,item):
print('y')
def __getattribute(self,item):
print('x')
obj = Foo()
obj.y
__getattr__,__getattribute__????class Foo(object): def __getattr__(sel,item): print('y') print('x') obj = Foo() obj.y
|