📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 09:39:41
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
_vendor
/
typeguard
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_vendor/typeguard
🔄 Refresh
✏️
Editing: _exceptions.py
Read Only
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])
💾 Save Changes
❌ Cancel