MCPcopy Index your code
hub / github.com/python/cpython / __getattribute__

Method __getattribute__

Lib/unittest/mock.py:2689–2692  ·  view source on GitHub ↗
(self, attr)

Source from the content-addressed store, hash-verified

2687
2688
2689 def __getattribute__(self, attr):
2690 if attr in tuple.__dict__:
2691 raise AttributeError
2692 return tuple.__getattribute__(self, attr)
2693
2694
2695 def _get_call_arguments(self):

Callers 5

_getowndocFunction · 0.45
_check_instanceFunction · 0.45
__getattr__Method · 0.45
__setattr__Method · 0.45
__delattr__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected