summaryrefslogtreecommitdiff
path: root/numpy/lib/scimath.py
diff options
context:
space:
mode:
authorTim Leslie <tim.leslie@gmail.com>2006-03-25 11:29:22 +0000
committerTim Leslie <tim.leslie@gmail.com>2006-03-25 11:29:22 +0000
commit3c45bc35234faa07a4ac095fccbc4998c2481bdf (patch)
tree005771977cb704e691f83ad1f4c173f0b03b21e1 /numpy/lib/scimath.py
parent4921d30b0e08d414b397585d0030958781cb1a56 (diff)
downloadnumpy-3c45bc35234faa07a4ac095fccbc4998c2481bdf.tar.gz
remove unused import
Diffstat (limited to 'numpy/lib/scimath.py')
-rw-r--r--numpy/lib/scimath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/scimath.py b/numpy/lib/scimath.py
index 3f1303f7e..21f2c5546 100644
--- a/numpy/lib/scimath.py
+++ b/numpy/lib/scimath.py
@@ -10,7 +10,7 @@ __all__ = ['sqrt', 'log', 'log2', 'logn','log10', 'power', 'arccos',
import numpy.core.numeric as nx
import numpy.core.numerictypes as nt
from numpy.core.numeric import asarray, any
-from numpy.lib.type_check import isreal, asscalar
+from numpy.lib.type_check import isreal
__all__.extend([key for key in dir(nx.umath)