(self)
| 3617 | assert_equal(x[3], 0) |
| 3618 | |
| 3619 | def test_put_hardmask(self): |
| 3620 | # Tests put on hardmask |
| 3621 | d = arange(5) |
| 3622 | n = [0, 0, 0, 1, 1] |
| 3623 | m = make_mask(n) |
| 3624 | xh = array(d + 1, mask=m, hard_mask=True, copy=True) |
| 3625 | xh.put([4, 2, 0, 1, 3], [1, 2, 3, 4, 5]) |
| 3626 | assert_equal(xh._data, [3, 4, 2, 4, 5]) |
| 3627 | |
| 3628 | def test_putmask(self): |
| 3629 | x = arange(6) + 1 |
nothing calls this directly
no test coverage detected