(self)
| 801 | assert_raises(ValueError, np.fromiter, [['12', ''], ['13', '']], str) |
| 802 | |
| 803 | def test_dot_negative_stride(self): |
| 804 | # Ticket #588 |
| 805 | x = np.array([[1, 5, 25, 125., 625]]) |
| 806 | y = np.array([[20.], [160.], [640.], [1280.], [1024.]]) |
| 807 | z = y[::-1].copy() |
| 808 | y2 = y[::-1] |
| 809 | assert_equal(np.dot(x, z), np.dot(x, y2)) |
| 810 | |
| 811 | def test_object_casting(self): |
| 812 | # This used to trigger the object-type version of |
nothing calls this directly
no test coverage detected