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

Method __delattr__

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

Source from the content-addressed store, hash-verified

1144 callmethod = object.__getattribute__(self, '_callmethod')
1145 return callmethod('__setattr__', (key, value))
1146 def __delattr__(self, key):
1147 if key[0] == '_':
1148 return object.__delattr__(self, key)
1149 callmethod = object.__getattribute__(self, '_callmethod')
1150 return callmethod('__delattr__', (key,))
1151
1152
1153class ValueProxy(BaseProxy):

Callers

nothing calls this directly

Calls 1

__getattribute__Method · 0.45

Tested by

no test coverage detected