Python 3.15 introduces [PEP 810 - Explicit lazy imports](https://peps.python.org/pep-0810/) via the new `lazy` soft keyword: ```python lazy import json lazy from pathlib import Path ``` Currently mypy reports these as syntax errors. Support is needed to: - [ ] Update the parser to recognise `lazy import` and `lazy from ... import` statements - [ ] Treat lazy imports the same as regular imports for type checking purposes (as noted in [PEP 810 § Typing and tools](https://peps.python.org/pep-0810/#typing-and-tools)) Related: - astral-sh/ruff#21305 (ruff tracking issue) - astral-sh/ty#2968 (ty tracking issue)