Write any changes in the array to the file on disk. For further information, see `memmap`. Parameters ---------- None See Also -------- memmap
(self)
| 299 | self.mode = None |
| 300 | |
| 301 | def flush(self): |
| 302 | """ |
| 303 | Write any changes in the array to the file on disk. |
| 304 | |
| 305 | For further information, see `memmap`. |
| 306 | |
| 307 | Parameters |
| 308 | ---------- |
| 309 | None |
| 310 | |
| 311 | See Also |
| 312 | -------- |
| 313 | memmap |
| 314 | |
| 315 | """ |
| 316 | if self.base is not None and hasattr(self.base, 'flush'): |
| 317 | self.base.flush() |
| 318 | |
| 319 | def __array_wrap__(self, arr, context=None): |
| 320 | arr = super().__array_wrap__(arr, context) |
no outgoing calls