(self)
| 3403 | assert_equal(x[3], 0) |
| 3404 | |
| 3405 | def test_put_hardmask(self): |
| 3406 | # Tests put on hardmask |
| 3407 | d = arange(5) |
| 3408 | n = [0, 0, 0, 1, 1] |
| 3409 | m = make_mask(n) |
| 3410 | xh = array(d + 1, mask=m, hard_mask=True, copy=True) |
| 3411 | xh.put([4, 2, 0, 1, 3], [1, 2, 3, 4, 5]) |
| 3412 | assert_equal(xh._data, [3, 4, 2, 4, 5]) |
| 3413 | |
| 3414 | def test_putmask(self): |
| 3415 | x = arange(6) + 1 |
nothing calls this directly
no test coverage detected