diff options
author | Travis Oliphant <oliphant@enthought.com> | 2008-08-23 22:52:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2008-08-23 22:52:55 +0000 |
commit | 376d483d31c4c5427510cf3a8c69fc795aef63aa (patch) | |
tree | 48faca25aa019e8f06c779294cbbf3818a8132c1 /numpy/core/memmap.py | |
parent | 1f58f4d87387b934933f6132ad96f9166808b715 (diff) | |
download | numpy-376d483d31c4c5427510cf3a8c69fc795aef63aa.tar.gz |
Trial fix to ticket #698
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 3a9a345dc..643506148 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -219,6 +219,7 @@ class memmap(ndarray): self = ndarray.__new__(subtype, shape, dtype=descr, buffer=mm, offset=offset, order=order) self._mmap = mm +# Should get rid of these... Are they used? self._offset = offset self._mode = mode self._size = size |