(self)
| 475 | assert_equal(xc.mask, True) |
| 476 | |
| 477 | def test_copy_on_python_builtins(self): |
| 478 | # Tests copy works on python builtins (issue#8019) |
| 479 | assert_(isMaskedArray(np.ma.copy([1,2,3]))) |
| 480 | assert_(isMaskedArray(np.ma.copy((1,2,3)))) |
| 481 | |
| 482 | def test_copy_immutable(self): |
| 483 | # Tests that the copy method is immutable, GitHub issue #5247 |
nothing calls this directly
no test coverage detected