From 5a765123d45616661f7d61f322ce8ba4a518e1aa Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Wed, 4 Jan 2006 19:30:36 +0000 Subject: Fixed lib --- numpy/lib/scimath.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/lib/scimath.py') diff --git a/numpy/lib/scimath.py b/numpy/lib/scimath.py index 4202fa640..1e06946b6 100644 --- a/numpy/lib/scimath.py +++ b/numpy/lib/scimath.py @@ -6,8 +6,8 @@ whose output data-type is different than the input data-type in certain domains __all__ = ['sqrt', 'log', 'log2', 'logn','log10', 'power', 'arccos', 'arcsin', 'arctanh'] -import numeric as nx -from numeric import * +import numpy.core.numeric as nx +from numpy.core.numeric import * from type_check import isreal, asscalar -- cgit v1.2.1