Internal function that builds a new MaskedArray from the information stored in a pickle.
(subtype, baseclass, baseshape, basetype,)
| 6532 | |
| 6533 | |
| 6534 | def _mareconstruct(subtype, baseclass, baseshape, basetype,): |
| 6535 | """Internal function that builds a new MaskedArray from the |
| 6536 | information stored in a pickle. |
| 6537 | |
| 6538 | """ |
| 6539 | _data = ndarray.__new__(baseclass, baseshape, basetype) |
| 6540 | _mask = ndarray.__new__(ndarray, baseshape, make_mask_descr(basetype)) |
| 6541 | return subtype.__new__(subtype, _data, mask=_mask, dtype=basetype,) |
| 6542 | |
| 6543 | |
| 6544 | class mvoid(MaskedArray): |
nothing calls this directly
no test coverage detected
searching dependent graphs…