Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/numpy/_typing/_shape.py: 100%
4 statements
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-23 06:43 +0000
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-23 06:43 +0000
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]]