Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/numpy/_typing/_nbit.py: 100%

12 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-09 06:12 +0000

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_NBitLong = Any 

12_NBitLongLong = Any 

13 

14_NBitHalf = Any 

15_NBitSingle = Any 

16_NBitDouble = Any 

17_NBitLongDouble = Any