diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-03-19 01:25:20 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-03-19 01:25:20 +0000 |
commit | 0838fa5177a802345d1bab2bc6cbdf36bc57d7bd (patch) | |
tree | b8c343dba742635afaffb254ef2919695f8d5139 /numpy/core | |
parent | 06f4407a27139efcc9adfc5b3b504fe38a712bd4 (diff) | |
download | numpy-0838fa5177a802345d1bab2bc6cbdf36bc57d7bd.tar.gz |
remove 'from numerictypes import *'
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/ma.py | 2 | ||||
-rw-r--r-- | numpy/core/tests/test_ma.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/ma.py b/numpy/core/ma.py index 3354f49c2..54157f22f 100644 --- a/numpy/core/ma.py +++ b/numpy/core/ma.py @@ -13,7 +13,7 @@ import umath import oldnumeric from numeric import newaxis, ndarray, inf from oldnumeric import typecodes, amax, amin -from numerictypes import * +from numerictypes import bool_ import numeric import warnings diff --git a/numpy/core/tests/test_ma.py b/numpy/core/tests/test_ma.py index 02ccb4625..f5e7fe068 100644 --- a/numpy/core/tests/test_ma.py +++ b/numpy/core/tests/test_ma.py @@ -1,6 +1,7 @@ import numpy import types, time from numpy.core.ma import * +from numpy.core.numerictypes import float32 from numpy.testing import ScipyTestCase, ScipyTest pi = numpy.pi def eq(v,w, msg=''): |