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

Method set

Lib/multiprocessing/managers.py:1034–1035  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

1032 def get(self):
1033 return self._value
1034 def set(self, value):
1035 self._value = value
1036 def __repr__(self):
1037 return '%s(%r, %r)'%(type(self).__name__, self._typecode, self._value)
1038 value = property(get, set)

Callers 4

shutdownMethod · 0.45
_setMethod · 0.45
__init__Method · 0.45
_setMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected