diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-07-10 12:28:50 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-07-10 12:28:50 +0000 |
commit | 6e4374e08e9cb2deb0266d3c4af61c3a6ee57deb (patch) | |
tree | df71380508bf8734ecdffaffc61d171fe55faa5d /numpy/core/memmap.py | |
parent | 1643267504310c3454579ff7fdc105d818454ef6 (diff) | |
download | numpy-6e4374e08e9cb2deb0266d3c4af61c3a6ee57deb.tar.gz |
remove unused import
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 99020c14d..83e9de1ef 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -2,7 +2,6 @@ __all__ = ['memmap'] import mmap from numeric import uint8, ndarray, dtype -from numerictypes import nbytes dtypedescr = dtype valid_filemodes = ["r", "c", "r+", "w+"] |