MCPcopy Create free account
hub / github.com/tox-dev/filelock / _ForwardingFileLock

Class _ForwardingFileLock

tests/test_subclass_options.py:358–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

356
357
358class _ForwardingFileLock(BaseFileLock):
359 _lifetime_supported = True
360
361 def __init__(self, lock_file: str, **kwargs: Unpack[_FileLockOptions]) -> None:
362 super().__init__(lock_file, **kwargs)
363
364 def _acquire(self) -> None:
365 raise NotImplementedError
366
367 def _release(self) -> None:
368 raise NotImplementedError
369
370
371class _ForwardingAsyncFileLock(BaseAsyncFileLock):

Calls

no outgoing calls