(self, blocking=True)
| 154 | _LockedBytes = _WinFileLock._LOCKED_BYTES_NUM |
| 155 | |
| 156 | def acquire(self, blocking=True): |
| 157 | if super(_WinPidFileLock, self).acquire(blocking): |
| 158 | self._register_lock() |
| 159 | return True |
| 160 | return False |
| 161 | |
| 162 | |
| 163 | class PidFileLock(FileLock): |
nothing calls this directly
no test coverage detected