diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 18:02:33 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 18:02:33 +0000 |
commit | 0072bd2837bcc89928fcc58e8ede88edbe1dcccd (patch) | |
tree | 3858e82df033f84f87689af64859b7963905bd54 /numpy/oldnumeric/ufuncs.py | |
parent | 6983e3f24e6ca214347012652fbf65cb01cf6e5b (diff) | |
download | numpy-0072bd2837bcc89928fcc58e8ede88edbe1dcccd.tar.gz |
Un-deprecate some names in Numeric.
Diffstat (limited to 'numpy/oldnumeric/ufuncs.py')
-rw-r--r-- | numpy/oldnumeric/ufuncs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/oldnumeric/ufuncs.py b/numpy/oldnumeric/ufuncs.py index 083a5ed66..58fa473a6 100644 --- a/numpy/oldnumeric/ufuncs.py +++ b/numpy/oldnumeric/ufuncs.py @@ -6,7 +6,8 @@ __all__ = ['less', 'cosh', 'arcsinh', 'add', 'ceil', 'arctan2', 'floor_divide', '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'] + 'absolute', 'sin', 'multiply', 'greater_equal', 'left_shift', + 'exp', 'divide_safe'] from numpy import less, cosh, arcsinh, add, ceil, arctan2, floor_divide, \ fmod, hypot, logical_and, power, sinh, remainder, cos, \ @@ -15,5 +16,5 @@ from numpy import less, cosh, arcsinh, add, ceil, arctan2, floor_divide, \ 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 + multiply, greater_equal, left_shift, exp, divide as divide_safe |