(self)
| 713 | assert_raises(ValueError, np.convolve, [1], []) |
| 714 | |
| 715 | def test_multidim_byteswap(self): |
| 716 | # Ticket #449 |
| 717 | r = np.array([(1, (0, 1, 2))], dtype="i2,3i2") |
| 718 | assert_array_equal(r.byteswap(), |
| 719 | np.array([(256, (0, 256, 512))], r.dtype)) |
| 720 | |
| 721 | def test_string_NULL(self): |
| 722 | # Changeset 3557 |
nothing calls this directly
no test coverage detected