123456789101112131415161718192021 |
- from __future__ import annotations
- from collections.abc import Callable, Generator, Sequence
- from typing import (
- ParamSpec,
- TypeVar,
- cast,
- )
- R = TypeVar("R")
- P = ParamSpec("P")
- __all__ = [
- "Callable",
- "Generator",
- "P",
- "R",
- "Sequence",
- "TypeVar",
- "cast",
- ]
|