_shape.py 275 B

12345678
  1. from collections.abc import Sequence
  2. from typing import Any, SupportsIndex, TypeAlias
  3. _Shape: TypeAlias = tuple[int, ...]
  4. _AnyShape: TypeAlias = tuple[Any, ...]
  5. # Anything that can be coerced to a shape tuple
  6. _ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]