Return a 3-tuple for pickling a MaskedArray.
(self)
| 475 | self.fill_value = flv |
| 476 | |
| 477 | def __reduce__(self): |
| 478 | """ |
| 479 | Return a 3-tuple for pickling a MaskedArray. |
| 480 | |
| 481 | """ |
| 482 | return (_mrreconstruct, |
| 483 | (self.__class__, self._baseclass, (0,), 'b',), |
| 484 | self.__getstate__()) |
| 485 | |
| 486 | |
| 487 | def _mrreconstruct(subtype, baseclass, baseshape, basetype,): |
nothing calls this directly
no test coverage detected