(self, blocking=True, timeout=None)
| 1060 | class 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): |