Uses the :func:`fcntl.flock` to hard lock the lock file on unix systems.
| 16 | if sys.platform == "win32": # pragma: win32 cover |
| 17 | |
| 18 | class UnixFileLock(BaseFileLock): |
| 19 | """Uses the :func:`fcntl.flock` to hard lock the lock file on unix systems.""" |
| 20 | |
| 21 | def _acquire(self) -> None: |
| 22 | raise NotImplementedError |
| 23 | |
| 24 | def _release(self) -> None: |
| 25 | raise NotImplementedError |
| 26 | |
| 27 | else: # pragma: win32 no cover |
| 28 | try: |
no outgoing calls
searching dependent graphs…