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

Method acquire

Lib/multiprocessing/managers.py:1063–1065  ·  view source on GitHub ↗
(self, blocking=True, timeout=None)

Source from the content-addressed store, hash-verified

1061class AcquirerProxy(BaseProxy):
1062 _exposed_ = ('acquire', 'release', 'locked')
1063 def acquire(self, blocking=True, timeout=None):
1064 args = (blocking,) if timeout is None else (blocking, timeout)
1065 return self._callmethod('acquire', args)
1066 def release(self):
1067 return self._callmethod('release')
1068 def locked(self):

Callers 13

putMethod · 0.45
getMethod · 0.45
putMethod · 0.45
task_doneMethod · 0.45
_stopMethod · 0.45
freeMethod · 0.45
waitMethod · 0.45
notifyMethod · 0.45
is_setMethod · 0.45
setMethod · 0.45
clearMethod · 0.45
waitMethod · 0.45

Calls 1

_callmethodMethod · 0.80

Tested by

no test coverage detected