craftbeerpi4-pione/venv3/lib/python3.7/site-packages/yarl/_quoting.py

19 lines
519 B
Python
Raw Normal View History

2021-03-03 23:49:41 +01:00
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[misc]
except ImportError: # pragma: no cover
from ._quoting_py import _Quoter, _Unquoter # type: ignore[misc]
else:
from ._quoting_py import _Quoter, _Unquoter # type: ignore[misc]