OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
filelock
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:26:52 AM
rwxrwxr-x
📄
__init__.py
1.21 KB
05/09/2024 06:58:25 AM
rw-r--r--
📁
__pycache__
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📄
_api.py
8.19 KB
05/09/2024 06:58:25 AM
rw-r--r--
📄
_error.py
362 bytes
05/09/2024 06:58:25 AM
rw-r--r--
📄
_soft.py
1.58 KB
05/09/2024 06:58:25 AM
rw-r--r--
📄
_unix.py
1.38 KB
05/09/2024 06:58:25 AM
rw-r--r--
📄
_util.py
558 bytes
05/09/2024 06:58:25 AM
rw-r--r--
📄
_windows.py
1.69 KB
05/09/2024 06:58:25 AM
rw-r--r--
📄
py.typed
0 bytes
05/09/2024 06:58:25 AM
rw-r--r--
📄
version.py
142 bytes
05/09/2024 06:58:25 AM
rw-r--r--
Editing: _error.py
Close
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", ]