MCPcopy Create free account
hub / github.com/catboost/catboost / __init__

Method __init__

library/python/filelock/__init__.py:165–171  ·  view source on GitHub ↗
(self, path)

Source from the content-addressed store, hash-verified

163class 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):

Callers

nothing calls this directly

Calls 3

_WinPidFileLockClass · 0.85
_NixPidFileLockClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected