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/ma.py | |
parent | 06f4407a27139efcc9adfc5b3b504fe38a712bd4 (diff) | |
download | numpy-0838fa5177a802345d1bab2bc6cbdf36bc57d7bd.tar.gz |
remove 'from numerictypes import *'
Diffstat (limited to 'numpy/core/ma.py')
-rw-r--r-- | numpy/core/ma.py | 2 |
1 files changed, 1 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 |