summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-09-13 18:04:57 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-09-13 18:04:57 +0000
commite8b5097f886ca58ff5713886f8378d2b233c418b (patch)
tree0ffd24e37f75e200f4a398f2ffc8bd7898caf3ec /numpy/ma/core.py
parentec1f7831680db674dfe3f8c89ab2159b0d8ed4c1 (diff)
downloadnumpy-e8b5097f886ca58ff5713886f8378d2b233c418b.tar.gz
Removed unused imports.
Standardize NumPy import as "import numpy as np".
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r--numpy/ma/core.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index e76f8787b..3312b6c0c 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -57,17 +57,14 @@ __all__ = ['MAError', 'MaskType', 'MaskedArray',
'var', 'where',
'zeros']
-import sys
-import types
import cPickle
import operator
import numpy as np
-from numpy import ndarray, typecodes, amax, amin, iscomplexobj,\
- bool_, complex_, float_, int_, object_, str_
+from numpy import ndarray, amax, amin, iscomplexobj, bool_, complex_, float_,\
+ int_, object_
from numpy import array as narray
-
import numpy.core.umath as umath
import numpy.core.numerictypes as ntypes
from numpy import expand_dims as n_expand_dims