Current Path : /proc/2568807/root/usr/local/lib/python3.12/site-packages/numpy/_typing/ |
Current File : //proc/2568807/root/usr/local/lib/python3.12/site-packages/numpy/_typing/_shape.py |
from collections.abc import Sequence from typing import SupportsIndex, TypeAlias _Shape: TypeAlias = tuple[int, ...] # Anything that can be coerced to a shape tuple _ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]