hyb
2026-01-07 c7f60dc7e9a36596f0e0d1787bd0cca4e9b57bcb
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]