diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-10-28 12:00:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-28 12:00:18 -0400 |
commit | 6ae842001332f532e0c76815d49336ecc2b88dde (patch) | |
tree | 201a67da435cb8cfe492d8fe78076546ba69259c /numpy/core/memmap.py | |
parent | e908bfa9977a45b311ef09f03551aa1780686739 (diff) | |
parent | 9a216d5103f9200e678ec2c23fedaf123cf751ba (diff) | |
download | numpy-6ae842001332f532e0c76815d49336ecc2b88dde.tar.gz |
Merge pull request #7987 from f0k/advertise-open_memmap
DOC: See also np.load and np.memmap in np.lib.format.open_memmap
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 2d15f0a74..b77deb59a 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -97,6 +97,10 @@ class memmap(ndarray): changes to disk before removing the object. + See also + -------- + lib.format.open_memmap : Create or load a memory-mapped ``.npy`` file. + Notes ----- The memmap object can be used anywhere an ndarray is accepted. |