Releases the lock and sets self._context.lock_file_fd to None.
(self)
| 1425 | |
| 1426 | @abstractmethod |
| 1427 | def _release(self) -> None: |
| 1428 | """Releases the lock and sets self._context.lock_file_fd to None.""" |
| 1429 | raise NotImplementedError |
| 1430 | |
| 1431 | |
| 1432 | # acquire() returns this wrapper instead of self so entering the with-statement does not call __enter__ a second |
no outgoing calls
no test coverage detected