# F64 baseline — plugin trees importing an HTTP client but shipping no
# rate-limit / Retry-After test. Grandfathered; shrink-only per F49.
#
# As of 2026-06-06: empty.
# - kairix/connectors/obsidian — was flagged because connector.py imports
#   ``from urllib.parse import quote`` (URL encoder for obsidian://open
#   deep-links). New test tests/integration/test_obsidian_rate_limit.py
#   asserts (a) no banned HTTP module is imported, and (b) urllib usage
#   is restricted to the URL-encoder family. Filesystem-bound connector
#   makes no external HTTP calls, so 429-handling is a non-applicable
#   contract.
# - kairix/providers/ollama — has a real httpx-backed transport for the
#   local sidecar at http://localhost:11434. New test
#   tests/integration/test_ollama_rate_limit.py pins the canonical
#   throttle-handling contract: 429 → ClientError, 503 → UpstreamError
#   with status_code, no silent retry / no partial-vector emission.
