diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 16:05:59 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 16:05:59 +0000 |
commit | 2322210c0395765e93c89f79353522f75c8a6a19 (patch) | |
tree | 7faf2213123987c897615c4e5b4bc9571e85f1b5 /numpy/numarray/ufuncs.py | |
parent | 5e385c922b18cb35fc02f244bc59e9cdf96e9f6c (diff) | |
download | numpy-2322210c0395765e93c89f79353522f75c8a6a19.tar.gz |
Fix numarray compatibility layer so it at least imports. It's not finished yet, but some functionality is there.
Diffstat (limited to 'numpy/numarray/ufuncs.py')
-rw-r--r-- | numpy/numarray/ufuncs.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/numpy/numarray/ufuncs.py b/numpy/numarray/ufuncs.py index b6e12cfe1..685b76587 100644 --- a/numpy/numarray/ufuncs.py +++ b/numpy/numarray/ufuncs.py @@ -1,21 +1,21 @@ __all__ = ['abs', 'absolute', 'add', 'arccos', 'arccosh', 'arcsin', 'arcsinh', 'arctan', 'arctan2', 'arctanh', 'bitwise_and', 'bitwise_not', - 'bitwise_or', 'bitwise_xor', 'ceil', 'cos', 'cosh', 'cumproduct', - 'cumsum', 'divide', 'equal', 'exp', 'fabs', 'floor', 'floor_divide', - 'fmod', 'greater', 'greater_equal', 'hypot', 'ieeemask', 'isnan', + 'bitwise_or', 'bitwise_xor', 'ceil', 'cos', 'cosh', 'divide', + 'equal', 'exp', 'fabs', 'floor', 'floor_divide', + 'fmod', 'greater', 'greater_equal', 'hypot', 'isnan', 'less', 'less_equal', 'log', 'log10', 'logical_and', 'logical_not', 'logical_or', 'logical_xor', 'lshift', 'maximum', 'minimum', - 'minus', 'multiply', 'negative', 'nonzero', 'not_equal', + 'minus', 'multiply', 'negative', 'not_equal', 'power', 'product', 'remainder', 'rshift', 'sin', 'sinh', 'sqrt', 'subtract', 'sum', 'tan', 'tanh', 'true_divide'] -from numpy import abs, absolute, add, arccos, arccosh, arcsin, arcsinh, \ - arctan, arctan2, arctanh, bitwise_and, bitwise_not, bitwise_or, \ - bitwise_xor, ceil, cos, cosh, cumproduct, cumsum, divide, equal, \ - exp, fabs, floor, floor_divide, fmod, greater, greater_equal, hypot, \ - ieeemask, isnan, less, less_equal, log, log10, logical_and, \ - logical_not, logical_or, logical_xor, lshift, maximum, minimum, \ - minus, multiply, negative, nonzero, not_equal, power, product, \ - remainder, rshift, sin, sinh, sqrt, subtract, sum, tan, tanh, \ - true_divide +from numpy import absolute as abs, absolute, add, arccos, arccosh, arcsin, \ + arcsinh, arctan, arctan2, arctanh, bitwise_and, invert as bitwise_not, \ + bitwise_or, bitwise_xor, ceil, cos, cosh, divide, \ + equal, exp, fabs, floor, floor_divide, fmod, greater, greater_equal, \ + hypot, isnan, less, less_equal, log, log10, logical_and, \ + logical_not, logical_or, logical_xor, left_shift as lshift, \ + maximum, minimum, negative as minus, multiply, negative, \ + not_equal, power, product, remainder, right_shift as rshift, sin, \ + sinh, sqrt, subtract, sum, tan, tanh, true_divide |