(self)
| 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): |
| 1069 | return self._callmethod('locked') |
| 1070 | def __enter__(self): |