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.4.4, created at 2024-04-09 06:12 +0000

1from collections.abc import Sequence 

2from typing import Union, SupportsIndex 

3 

4_Shape = tuple[int, ...] 

5 

6# Anything that can be coerced to a shape tuple 

7_ShapeLike = Union[SupportsIndex, Sequence[SupportsIndex]]