Current mask.
(self)
| 3515 | |
| 3516 | @property |
| 3517 | def mask(self): |
| 3518 | """ Current mask. """ |
| 3519 | |
| 3520 | # We could try to force a reshape, but that wouldn't work in some |
| 3521 | # cases. |
| 3522 | # Return a view so that the dtype and shape cannot be changed in place |
| 3523 | # This still preserves nomask by identity |
| 3524 | return self._mask.view() |
| 3525 | |
| 3526 | @mask.setter |
| 3527 | def mask(self, value): |
nothing calls this directly
no test coverage detected