@@ -3,27 +3,27 @@ from typing import assert_type
33import _numtype as _nt
44import numpy as np
55
6- AR_u : _nt .Array [np .uint32 ]
6+ AR_u4 : _nt .Array [np .uint32 ]
77AR_U : _nt .Array [np .str_ ]
88AR_LIKE_b : list [bool ]
99AR_LIKE_i : list [int ]
1010AR_LIKE_f : list [float ]
1111
1212###
1313
14- assert_type (np .fix (AR_u ), _nt .Array [np .uint32 ])
14+ assert_type (np .fix (AR_u4 ), _nt .Array [np .uint32 ])
1515assert_type (np .fix (AR_LIKE_b ), _nt .Array [np .bool ])
1616assert_type (np .fix (AR_LIKE_i ), _nt .Array [np .intp ])
1717assert_type (np .fix (AR_LIKE_f ), _nt .Array [np .float64 ])
1818assert_type (np .fix (AR_LIKE_f , out = AR_U ), _nt .Array [np .str_ ])
1919
20- assert_type (np .isposinf (AR_u ), _nt .Array [np .bool ])
20+ assert_type (np .isposinf (AR_u4 ), _nt .Array [np .bool ])
2121assert_type (np .isposinf (AR_LIKE_b ), _nt .Array1D [np .bool ])
2222assert_type (np .isposinf (AR_LIKE_i ), _nt .Array1D [np .bool ])
2323assert_type (np .isposinf (AR_LIKE_f ), _nt .Array1D [np .bool ])
2424assert_type (np .isposinf (AR_LIKE_f , out = AR_U ), _nt .Array [np .str_ ])
2525
26- assert_type (np .isneginf (AR_u ), _nt .Array [np .bool ])
26+ assert_type (np .isneginf (AR_u4 ), _nt .Array [np .bool ])
2727assert_type (np .isneginf (AR_LIKE_b ), _nt .Array1D [np .bool ])
2828assert_type (np .isneginf (AR_LIKE_i ), _nt .Array1D [np .bool ])
2929assert_type (np .isneginf (AR_LIKE_f ), _nt .Array1D [np .bool ])
0 commit comments