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

Method acquire

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

Source from the content-addressed store, hash-verified

1060class AcquirerProxy(BaseProxy):
1061 _exposed_ = ('acquire', 'release')
1062 def acquire(self, blocking=True, timeout=None):
1063 args = (blocking,) if timeout is None else (blocking, timeout)
1064 return self._callmethod('acquire', args)
1065 def release(self):
1066 return self._callmethod('release')
1067 def __enter__(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