hyb
2025-12-23 c980682a1fe205d8c21d349e9fc6b9e4951aea34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import numpy as np
import numpy.typing as npt
 
AR_f8: npt.NDArray[np.float64]
 
np.sin.nin + "foo"  # type: ignore[operator]
np.sin(1, foo="bar")  # type: ignore[call-overload]
 
np.abs(None)  # type: ignore[call-overload]
 
np.add(1, 1, 1)  # type: ignore[call-overload]
np.add(1, 1, axis=0)  # type: ignore[call-overload]
 
np.matmul(AR_f8, AR_f8, where=True)  # type: ignore[call-overload]
 
np.frexp(AR_f8, out=None)  # type: ignore[call-overload]
np.frexp(AR_f8, out=AR_f8)  # type: ignore[call-overload]