diff options
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 7 |
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 |