(self, path)
| 163 | class PidFileLock(FileLock): |
| 164 | |
| 165 | def __init__(self, path): |
| 166 | AbstractFileLock.__init__(self, path) |
| 167 | |
| 168 | if sys.platform.startswith('win'): |
| 169 | self._lock = _WinPidFileLock(path) |
| 170 | else: |
| 171 | self._lock = _NixPidFileLock(path) |
| 172 | |
| 173 | @property |
| 174 | def info(self): |
nothing calls this directly
no test coverage detected