diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 09:01:49 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 09:01:49 +0000 |
commit | 54a193f1a0cdd6ccf40e36d09daa9fb0dd658456 (patch) | |
tree | 8b9f5e91b2495823fce61adac9c6833b54551ebc /scipy/base/numeric.py | |
parent | e67afea77cf3b076c4d56a9c902e68d31bf80e6d (diff) | |
download | numpy-54a193f1a0cdd6ccf40e36d09daa9fb0dd658456.tar.gz |
Added Inf to base
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index 7b0b4fa32..b6142fb1f 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -380,8 +380,8 @@ def getbufsize(size): seterr(where='builtin') setbufsize(UFUNC_BUFSIZE_DEFAULT,where='builtin') -inf = PINF -nan = NAN +Inf = inf = infty = Infinity = PINF +nan = NaN = NAN from oldnumeric import * |