summaryrefslogtreecommitdiff
path: root/numpy/lib/ufunclike.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 19:30:36 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 19:30:36 +0000
commit5a765123d45616661f7d61f322ce8ba4a518e1aa (patch)
tree726bc976445a7b5f72e3b1ba751777c813bf4d46 /numpy/lib/ufunclike.py
parente706c7d92c4ee41e8e995fb3838bd0931b57efb5 (diff)
downloadnumpy-5a765123d45616661f7d61f322ce8ba4a518e1aa.tar.gz
Fixed lib
Diffstat (limited to 'numpy/lib/ufunclike.py')
-rw-r--r--numpy/lib/ufunclike.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/ufunclike.py b/numpy/lib/ufunclike.py
index 7e8d44c7d..ee5d918d6 100644
--- a/numpy/lib/ufunclike.py
+++ b/numpy/lib/ufunclike.py
@@ -4,8 +4,8 @@ storing results in an output array.
"""
__all__ = ['fix', 'isneginf', 'isposinf', 'sign', 'log2']
-import numeric as nx
-from numeric import asarray, empty, empty_like, isinf, signbit, zeros
+import numpy.core.numeric as nx
+from numpy.core.numeric import asarray, empty, empty_like, isinf, signbit, zeros
import umath
def fix(x, y=None):