diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-11-11 14:54:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-11 14:54:29 +0200 |
commit | f1623beb83e410152ba8764de46a374c6452c089 (patch) | |
tree | f489e3f3d89c178fcc9f1939e47d25ded997ec43 /numpy/core/memmap.py | |
parent | c3b29ca3287ec440cd918f8ae0d1cae4b954e69d (diff) | |
download | numpy-f1623beb83e410152ba8764de46a374c6452c089.tar.gz |
Update numpy/core/memmap.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
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 23703aa65..66653c0c1 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -38,7 +38,7 @@ class memmap(ndarray): which returns a view into an mmap buffer. Flush the memmap instance to write the changes to the file. Currently there - is no API to close the underlying memmap. It is tricky to ensure the + is no API to close the underlying ``mmap``. It is tricky to ensure the resource is actually closed, since it may be shared between different memmap instances. |