diff options
author | Tom Bird <tombird1992@gmail.com> | 2016-08-17 18:56:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 18:56:27 +0100 |
commit | aaf86b51e2519d0b769461263b6a64bb87f15e0d (patch) | |
tree | ddd2550e113c5d0baffca8832f794537f0abff44 /numpy/core/memmap.py | |
parent | 0b38e3bae4747d0691cf3bbf0969cf76d9f5a478 (diff) | |
download | numpy-aaf86b51e2519d0b769461263b6a64bb87f15e0d.tar.gz |
DOC: #7927. Remove deprecated note for memmap relevant for Python <2.5 [ci skip]
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 0945b1748..6fa845277 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -102,6 +102,8 @@ class memmap(ndarray): The memmap object can be used anywhere an ndarray is accepted. Given a memmap ``fp``, ``isinstance(fp, numpy.ndarray)`` returns ``True``. + + Memory-mapped files cannot be larger than 2GB on 32-bit systems. When a memmap causes a file to be created or extended beyond its current size in the filesystem, the contents of the new part are |