X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/yarl
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
yarl
/
ðŸ“
..
📄
__init__.py
(154 B)
📄
__init__.pyi
(3.84 KB)
ðŸ“
__pycache__
📄
_quoting.py
(537 B)
📄
_quoting_c.cpython-311-x86_64-linux-gnu.so
(121.7 KB)
📄
_quoting_c.pyi
(447 B)
📄
_quoting_c.pyx
(11.23 KB)
📄
_quoting_py.py
(6.22 KB)
📄
_url.py
(37.05 KB)
📄
py.typed
(14 B)
Editing: _quoting.py
import os import sys __all__ = ("_Quoter", "_Unquoter") NO_EXTENSIONS = bool(os.environ.get("YARL_NO_EXTENSIONS")) # type: bool if sys.implementation.name != "cpython": NO_EXTENSIONS = True if not NO_EXTENSIONS: # pragma: no branch try: from ._quoting_c import _Quoter, _Unquoter # type: ignore[assignment] except ImportError: # pragma: no cover from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment] else: from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment]
Upload File
Create Folder