⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
typeguard
/
View File Name :
_exceptions.py
from collections import deque from typing import Deque class TypeHintWarning(UserWarning): """ A warning that is emitted when a type hint in string form could not be resolved to an actual type. """ class TypeCheckWarning(UserWarning): """Emitted by typeguard's type checkers when a type mismatch is detected.""" def __init__(self, message: str): super().__init__(message) class InstrumentationWarning(UserWarning): """Emitted when there's a problem with instrumenting a function for type checks.""" def __init__(self, message: str): super().__init__(message) class TypeCheckError(Exception): """ Raised by typeguard's type checkers when a type mismatch is detected. """ def __init__(self, message: str): super().__init__(message) self._path: Deque[str] = deque() def append_path_element(self, element: str) -> None: self._path.append(element) def __str__(self) -> str: if self._path: return " of ".join(self._path) + " " + str(self.args[0]) else: return str(self.args[0])