From 490712cd35dcecfc9423de4bde0b29cb012dda25 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Wed, 4 Jan 2006 21:05:36 +0000 Subject: More numpy fixes... --- numpy/core/ma.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'numpy/core/ma.py') diff --git a/numpy/core/ma.py b/numpy/core/ma.py index 439c311ab..3c3394599 100644 --- a/numpy/core/ma.py +++ b/numpy/core/ma.py @@ -11,7 +11,6 @@ import string, types, sys import umath import oldnumeric -import function_base from numeric import e, pi, newaxis, ndarray, inf from oldnumeric import typecodes, amax, amin from numerictypes import * @@ -468,7 +467,7 @@ absolute = masked_unary_operation(umath.absolute) fabs = masked_unary_operation(umath.fabs) negative = masked_unary_operation(umath.negative) nonzero = masked_unary_operation(oldnumeric.nonzero) -around = masked_unary_operation(function_base.round_) +around = masked_unary_operation(oldnumeric.round_) floor = masked_unary_operation(umath.floor) ceil = masked_unary_operation(umath.ceil) sometrue = masked_unary_operation(oldnumeric.sometrue) -- cgit v1.2.1