MCPcopy Index your code
hub / github.com/RustPython/RustPython / __getattr__

Method __getattr__

Lib/multiprocessing/managers.py:1133–1137  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

1131class NamespaceProxy(BaseProxy):
1132 _exposed_ = ('__getattribute__', '__setattr__', '__delattr__')
1133 def __getattr__(self, key):
1134 if key[0] == '_':
1135 return object.__getattribute__(self, key)
1136 callmethod = object.__getattribute__(self, '_callmethod')
1137 return callmethod('__getattribute__', (key,))
1138 def __setattr__(self, key, value):
1139 if key[0] == '_':
1140 return object.__setattr__(self, key, value)

Callers

nothing calls this directly

Calls 1

__getattribute__Method · 0.45

Tested by

no test coverage detected