Platform dependent. If the file lock could be acquired, self._lock_file_fd holds the file descriptor of the lock file.
(self)
| 196 | # -------------------------------------------- |
| 197 | |
| 198 | def _acquire(self): |
| 199 | """ |
| 200 | Platform dependent. If the file lock could be |
| 201 | acquired, self._lock_file_fd holds the file descriptor |
| 202 | of the lock file. |
| 203 | """ |
| 204 | raise NotImplementedError() |
| 205 | |
| 206 | def _release(self): |
| 207 | """ |