Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/numpy/_typing/_shape.py: 100%

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

3 statements  

1from typing import Sequence, Tuple, Union, SupportsIndex 

2 

3_Shape = Tuple[int, ...] 

4 

5# Anything that can be coerced to a shape tuple 

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