/usr/share/cagefs-skeleton/opt/alt/python37/lib/python3.7/site-packages/filelock
from __future__ import annotations class Timeout(TimeoutError): """Raised when the lock could not be acquired in *timeout* seconds.""" def __init__(self, lock_file: str) -> None: #: The path of the file lock. self.lock_file = lock_file def __str__(self) -> str: return f"The file lock '{self.lock_file}' could not be acquired." __all__ = [ "Timeout", ]
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_api.py
Edit
_error.py
Edit
_soft.py
Edit
_unix.py
Edit
_util.py
Edit
_windows.py
Edit
py.typed
Edit
version.py
Edit