(self)
| 116 | return self._lock.acquire(blocking) |
| 117 | |
| 118 | def release(self): |
| 119 | logger.debug('Ensuring %s released: %s', type(self).__name__, self.path) |
| 120 | return self._lock.release() |
| 121 | |
| 122 | |
| 123 | _LockInfo = collections.namedtuple('LockInfo', ['pid', 'time']) |