Coverage for /usr/lib/python3/dist-packages/numpy/_typing/_shape.py: 100%
4 statements
« prev ^ index » next coverage.py v7.4.4, created at 2025-06-14 15:25 +0200
« prev ^ index » next coverage.py v7.4.4, created at 2025-06-14 15:25 +0200
1from collections.abc import Sequence
2from typing import Union, SupportsIndex
4_Shape = tuple[int, ...]
6# Anything that can be coerced to a shape tuple
7_ShapeLike = Union[SupportsIndex, Sequence[SupportsIndex]]