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

Method __setattr__

Lib/multiprocessing/managers.py:1138–1142  ·  view source on GitHub ↗
(self, key, value)

Source from the content-addressed store, hash-verified

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)
1141 callmethod = object.__getattribute__(self, '_callmethod')
1142 return callmethod('__setattr__', (key, value))
1143 def __delattr__(self, key):
1144 if key[0] == '_':
1145 return object.__delattr__(self, key)

Callers

nothing calls this directly

Calls 1

__getattribute__Method · 0.45

Tested by

no test coverage detected