X7ROOT File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/filelock
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
filelock
/
ðŸ“
..
📄
__init__.py
(1.22 KB)
ðŸ“
__pycache__
📄
_api.py
(8.15 KB)
📄
_error.py
(399 B)
📄
_soft.py
(1.61 KB)
📄
_unix.py
(1.42 KB)
📄
_util.py
(594 B)
📄
_windows.py
(1.72 KB)
📄
py.typed
(0 B)
📄
version.py
(142 B)
Editing: _error.py
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", ]
Upload File
Create Folder