summaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/numpy/_typing/_shape.py
blob: e297aef2f554444333f49fba79ef2f18d0530323 (plain)
1
2
3
4
5
6
7
8
from collections.abc import Sequence
from typing import Any, SupportsIndex, TypeAlias

_Shape: TypeAlias = tuple[int, ...]
_AnyShape: TypeAlias = tuple[Any, ...]

# Anything that can be coerced to a shape tuple
_ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]