fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
20 lines
506 B
Python
20 lines
506 B
Python
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]
|