Current mask.
(self)
| 3582 | |
| 3583 | @property |
| 3584 | def mask(self): |
| 3585 | """ Current mask. """ |
| 3586 | |
| 3587 | # We could try to force a reshape, but that wouldn't work in some |
| 3588 | # cases. |
| 3589 | # Return a view so that the dtype and shape cannot be changed in place |
| 3590 | # This still preserves nomask by identity |
| 3591 | return self._mask.view() |
| 3592 | |
| 3593 | @mask.setter |
| 3594 | def mask(self, value): |
nothing calls this directly
no test coverage detected