()
| 4655 | assert_equal(exp, acc) |
| 4656 | |
| 4657 | def test_signaling_nan_exceptions(): |
| 4658 | with assert_no_warnings(): |
| 4659 | a = np.ndarray(shape=(), dtype='float32', buffer=b'\x00\xe0\xbf\xff') |
| 4660 | np.isnan(a) |
| 4661 | |
| 4662 | @pytest.mark.parametrize("arr", [ |
| 4663 | np.arange(2), |
nothing calls this directly
no test coverage detected