diff options
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 80a653c77..d3dbd09fb 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -85,7 +85,7 @@ class memmap(ndarray): self._mmap.flush() def close(self): - self._mmap.close() + self._mmap.close() def __del__(self): if self._mmap is not None: |