Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/numpy/_typing/_nbit.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

11 statements  

1"""A module with the precisions of platform-specific `~numpy.number`s.""" 

2 

3from typing import Any 

4 

5# To-be replaced with a `npt.NBitBase` subclass by numpy's mypy plugin 

6_NBitByte = Any 

7_NBitShort = Any 

8_NBitIntC = Any 

9_NBitIntP = Any 

10_NBitInt = Any 

11_NBitLongLong = Any 

12 

13_NBitHalf = Any 

14_NBitSingle = Any 

15_NBitDouble = Any 

16_NBitLongDouble = Any