diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-30 18:04:46 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-03-30 18:04:46 +0000 |
commit | 65d44cd7958babd0059f2690ed57f42b48e3a542 (patch) | |
tree | a044cf364619c901b42ad87b0fd1ae59cfdde4ed /numpy/lib/scimath.py | |
parent | 9953985293fb344fc904ab3f4945cf5688a8b7fd (diff) | |
download | numpy-65d44cd7958babd0059f2690ed57f42b48e3a542.tar.gz |
Fixed 'from numpy.lib.scimath import *' failure.
Diffstat (limited to 'numpy/lib/scimath.py')
-rw-r--r-- | numpy/lib/scimath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/scimath.py b/numpy/lib/scimath.py index 21f2c5546..cd3bea446 100644 --- a/numpy/lib/scimath.py +++ b/numpy/lib/scimath.py @@ -13,8 +13,8 @@ from numpy.core.numeric import asarray, any from numpy.lib.type_check import isreal -__all__.extend([key for key in dir(nx.umath) - if key[0] != '_' and key not in __all__]) +#__all__.extend([key for key in dir(nx.umath) +# if key[0] != '_' and key not in __all__]) _ln2 = nx.log(2.0) |