(self, blocking=True)
| 112 | self._lock = _NixFileLock(path) |
| 113 | |
| 114 | def acquire(self, blocking=True): |
| 115 | logger.debug('Acquiring %s (blocking=%s): %s', type(self).__name__, blocking, self.path) |
| 116 | return self._lock.acquire(blocking) |
| 117 | |
| 118 | def release(self): |
| 119 | logger.debug('Ensuring %s released: %s', type(self).__name__, self.path) |