Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/numpy/_typing/_shape.py: 83%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from collections.abc import Sequence
2from typing import Any, SupportsIndex, TypeAlias
4_Shape: TypeAlias = tuple[int, ...]
5_AnyShape: TypeAlias = tuple[Any, ...]
7# Anything that can be coerced to a shape tuple
8_ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]