first commit

This commit is contained in:
unknown
2025-12-08 21:35:55 +09:00
commit f343f405f7
5357 changed files with 923703 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import os
import sys
from typing import TYPE_CHECKING
__all__ = ("_Quoter", "_Unquoter")
NO_EXTENSIONS = bool(os.environ.get("YARL_NO_EXTENSIONS")) # type: bool
if sys.implementation.name != "cpython":
NO_EXTENSIONS = True
if TYPE_CHECKING or NO_EXTENSIONS:
from ._quoting_py import _Quoter, _Unquoter
else:
try:
from ._quoting_c import _Quoter, _Unquoter
except ImportError: # pragma: no cover
from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment]