Current Path: > > opt > hc_python > > > lib > python3.12 > site-packages > filelock >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 1769 bytes | April 04 2025 08:02:26. | |
_api.py | File | 14545 bytes | April 04 2025 08:02:26. | |
_error.py | File | 787 bytes | April 04 2025 08:02:26. | |
_soft.py | File | 1711 bytes | April 04 2025 08:02:26. | |
_unix.py | File | 2351 bytes | April 04 2025 08:02:26. | |
_util.py | File | 1715 bytes | April 04 2025 08:02:26. | |
_windows.py | File | 2179 bytes | April 04 2025 08:02:26. | |
asyncio.py | File | 12451 bytes | April 04 2025 08:02:26. | |
py.typed | File | 0 bytes | April 04 2025 08:02:26. | |
version.py | File | 513 bytes | April 04 2025 08:02:26. |
from __future__ import annotations from typing import Any class Timeout(TimeoutError): # noqa: N818 """Raised when the lock could not be acquired in *timeout* seconds.""" def __init__(self, lock_file: str) -> None: super().__init__() self._lock_file = lock_file def __reduce__(self) -> str | tuple[Any, ...]: return self.__class__, (self._lock_file,) # Properly pickle the exception def __str__(self) -> str: return f"The file lock '{self._lock_file}' could not be acquired." def __repr__(self) -> str: return f"{self.__class__.__name__}({self.lock_file!r})" @property def lock_file(self) -> str: """:return: The path of the file lock.""" return self._lock_file __all__ = [ "Timeout", ]
SILENT KILLER Tool