(self)
| 109 | return super(SharedNDArray, cls).__new__(cls, *args, **kwargs) |
| 110 | |
| 111 | def __reduce__(self): |
| 112 | order = "C" if self.flags["C_CONTIGUOUS"] else "F" |
| 113 | return self.__class__.from_memmap, (self.filename, self.dtype, self.mode, self.offset, self.shape, order) |
| 114 | |
| 115 | def __array_wrap__(self, arr, context=None): |
| 116 | arr = super(np.memmap, self).__array_wrap__(arr, context) |
nothing calls this directly
no outgoing calls
no test coverage detected