cached_py_info.py 237 B

12345678910
  1. """Backward-compatibility re-export — use ``python_discovery`` directly."""
  2. from __future__ import annotations
  3. from python_discovery._cached_py_info import clear, from_exe # noqa: PLC2701
  4. __all__ = [
  5. "clear",
  6. "from_exe",
  7. ]