diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 01:20:56 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 01:20:56 +0000 |
commit | 9d8e2024ff9014fa2fd9a29812cec615dff6feb9 (patch) | |
tree | e6353aeb1f9f90e6011ad830a5f3b140b1120435 /numpy/oldnumeric/ufuncs.py | |
parent | 9d98d9d5e3668d3b8da3bb3019a28d6e945d6fad (diff) | |
download | numpy-9d8e2024ff9014fa2fd9a29812cec615dff6feb9.tar.gz |
More fixes to backward compatibility
Diffstat (limited to 'numpy/oldnumeric/ufuncs.py')
-rw-r--r-- | numpy/oldnumeric/ufuncs.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/numpy/oldnumeric/ufuncs.py b/numpy/oldnumeric/ufuncs.py new file mode 100644 index 000000000..163be5260 --- /dev/null +++ b/numpy/oldnumeric/ufuncs.py @@ -0,0 +1,18 @@ +__all__ = ['less', 'cosh', 'arcsinh', 'add', 'ceil', 'arctan2', 'floor_divide', + 'fmod', 'hypot', 'logical_and', 'power', 'sinh', 'remainder', 'cos', + 'equal', 'arccos', 'less_equal', 'divide', 'bitwise_or', 'bitwise_and', + 'logical_xor', 'log', 'subtract', 'invert', 'negative', 'log10', 'arcsin', + 'arctanh', 'logical_not', 'not_equal', 'tanh', 'true_divide', 'maximum', + 'arccosh', 'logical_or', 'minimum', 'conjugate', 'tan', 'greater', 'bitwise_xor', + 'fabs', 'floor', 'sqrt', 'arctan', 'right_shift', 'absolute', 'sin', + 'multiply', 'greater_equal', 'left_shift', 'exp'] + +from numpy import less, cosh, arcsinh, add, ceil, arctan2, floor_divide, \ + fmod, hypot, logical_and, power, sinh, remainder, cos, \ + equal, arccos, less_equal, divide, bitwise_or, bitwise_and, \ + logical_xor, log, subtract, invert, negative, log10, arcsin, \ + arctanh, logical_not, not_equal, tanh, true_divide, maximum, \ + arccosh, logical_or, minimum, conjugate, tan, greater, bitwise_xor, \ + fabs, floor, sqrt, arctan, right_shift, absolute, sin, \ + multiply, greater_equal, left_shift, exp + |