(self)
| 203 | expected, operator.matmul(array, array_like)) |
| 204 | |
| 205 | def test_ufunc_at(self): |
| 206 | array = ArrayLike(np.array([1, 2, 3, 4])) |
| 207 | assert_(np.negative.at(array, np.array([0, 1])) is None) |
| 208 | _assert_equal_type_and_value(array, ArrayLike([-1, -2, 3, 4])) |
| 209 | |
| 210 | def test_ufunc_two_outputs(self): |
| 211 | mantissa, exponent = np.frexp(2 ** -3) |
nothing calls this directly
no test coverage detected