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

Method __getattribute__

Lib/_threading_local.py:99–101  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

97 return self
98
99 def __getattribute__(self, name):
100 with _patch(self):
101 return object.__getattribute__(self, name)
102
103 def __setattr__(self, name, value):
104 if name == '__dict__':

Callers 1

_patchFunction · 0.45

Calls 1

_patchFunction · 0.70

Tested by

no test coverage detected