(self)
| 21 | @dataclass(eq=True, init=False) # pragma: win32 no cover |
| 22 | class EqualLock(BaseFileLock): # pragma: win32 no cover |
| 23 | def _acquire(self) -> None: # pragma: win32 no cover |
| 24 | self._context.lock_file_fd = os.open(self.lock_file, os.O_CREAT | os.O_RDWR, 0o600) |
| 25 | |
| 26 | def _release(self) -> None: # pragma: win32 no cover |
| 27 | os.close(self._context.lock_file_fd if self._context.lock_file_fd is not None else -1) |
nothing calls this directly
no outgoing calls
no test coverage detected