R3
Size: a a a
R3
R3
ᅠ
Z
БГ
R3
БГ
R3
БГ
E
R3
БГ
R3
R3
БГ
БГ
__getattribute__
def __getattribute__(self, item):
if item in self.__class__.__dict__:
v = self.__class__.__dict__[item]
elif item in self.__dict__:
v = self.__dict__[item]
else:
v = self.__getattr__(item)
if hasattr(v, '__get__'):
v = v.__get__(self, type(self))
return v
R3
ᅠ
E