Home | History | Annotate | Download | only in test

Lines Matching refs:__getattribute__

652             def __getattribute__(self, name):
654 return MT.__getattribute__(self, name)
1685 # __getattribute__, but they still can be descriptors.
1744 def __getattribute__(self, attr, test=self):
1746 test.fail("__getattribute__ called with {0}".format(attr))
1747 return object.__getattribute__(self, attr)
3490 def __getattribute__(self, name):
3493 return object.__getattribute__(self, name)
3494 A.__getattribute__ = __getattribute__
3505 del A.__getattribute__
3925 def __getattribute__(self, attr):
3929 return super(C2, self).__getattribute__(attr)
4012 object.__getattribute__(tp, "__bases__")
4253 def __getattribute__(self, name):
4255 return object.__getattribute__(self, name)
4292 def __getattribute__(self, name):
4294 return object.__getattribute__(self, name)
4561 __getattribute__ = descr
4565 __getattribute__ = descr
4579 def __getattribute__(self, name):
4588 self.assertRaises(TypeError, type.__getattribute__, list, type)