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

11 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2025-06-14 15:25 +0200

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