Internal function that builds a new MaskedArray from the information stored in a pickle.
(subtype, baseclass, baseshape, basetype,)
| 6333 | |
| 6334 | |
| 6335 | def _mareconstruct(subtype, baseclass, baseshape, basetype,): |
| 6336 | """Internal function that builds a new MaskedArray from the |
| 6337 | information stored in a pickle. |
| 6338 | |
| 6339 | """ |
| 6340 | _data = ndarray.__new__(baseclass, baseshape, basetype) |
| 6341 | _mask = ndarray.__new__(ndarray, baseshape, make_mask_descr(basetype)) |
| 6342 | return subtype.__new__(subtype, _data, mask=_mask, dtype=basetype,) |
| 6343 | |
| 6344 | |
| 6345 | class mvoid(MaskedArray): |
nothing calls this directly
no test coverage detected