11import numpy as np
2- from numpy .typing import _32Bit
3-
42f : float
53f8 : np .float64
64c8 : np .complex64
@@ -11,7 +9,6 @@ u4: np.uint32
119
1210finfo_f8 : np .finfo [np .float64 ]
1311iinfo_i8 : np .iinfo [np .int64 ]
14- machar_f4 : np .core .getlimits .MachArLike [_32Bit ]
1512
1613reveal_type (np .finfo (f )) # E: numpy.finfo[{double}]
1714reveal_type (np .finfo (f8 )) # E: numpy.finfo[{float64}]
@@ -36,7 +33,6 @@ reveal_type(finfo_f8.resolution) # E: {float64}
3633reveal_type (finfo_f8 .tiny ) # E: {float64}
3734reveal_type (finfo_f8 .smallest_normal ) # E: {float64}
3835reveal_type (finfo_f8 .smallest_subnormal ) # E: {float64}
39- reveal_type (finfo_f8 .machar ) # E: MachArLike[numpy.typing._64Bit]
4036
4137reveal_type (np .iinfo (i )) # E: iinfo[{int_}]
4238reveal_type (np .iinfo (i8 )) # E: iinfo[{int64}]
@@ -49,25 +45,3 @@ reveal_type(iinfo_i8.bits) # E: int
4945reveal_type (iinfo_i8 .key ) # E: str
5046reveal_type (iinfo_i8 .min ) # E: int
5147reveal_type (iinfo_i8 .max ) # E: int
52-
53- reveal_type (machar_f4 .eps ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
54- reveal_type (machar_f4 .epsilon ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
55- reveal_type (machar_f4 .epsneg ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
56- reveal_type (machar_f4 .huge ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
57- reveal_type (machar_f4 .resolution ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
58- reveal_type (machar_f4 .tiny ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
59- reveal_type (machar_f4 .xmax ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
60- reveal_type (machar_f4 .xmin ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
61- reveal_type (machar_f4 .smallest_subnormal ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
62- reveal_type (machar_f4 .smallest_normal ) # E: numpy.ndarray[Any, numpy.dtype[{float32}]]
63- reveal_type (machar_f4 .iexp ) # E: int
64- reveal_type (machar_f4 .irnd ) # E: int
65- reveal_type (machar_f4 .it ) # E: int
66- reveal_type (machar_f4 .machep ) # E: int
67- reveal_type (machar_f4 .maxexp ) # E: int
68- reveal_type (machar_f4 .minexp ) # E: int
69- reveal_type (machar_f4 .negep ) # E: int
70- reveal_type (machar_f4 .ngrd ) # E: int
71- reveal_type (machar_f4 .precision ) # E: int
72- reveal_type (machar_f4 .ibeta ) # E: {int32}
73- reveal_type (machar_f4 .title ) # E: str
0 commit comments