diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:00:27 +0000 |
commit | e706c7d92c4ee41e8e995fb3838bd0931b57efb5 (patch) | |
tree | 015a057d49422774e49ed211a37c14105d03a713 /numpy/lib/getlimits.py | |
parent | c14d4fe25cb5cd482369734dd487ac8f376851c9 (diff) | |
download | numpy-e706c7d92c4ee41e8e995fb3838bd0931b57efb5.tar.gz |
Changed all references to scipy to numpy
Diffstat (limited to 'numpy/lib/getlimits.py')
-rw-r--r-- | numpy/lib/getlimits.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/getlimits.py b/numpy/lib/getlimits.py index 41030af2d..3220d0bab 100644 --- a/numpy/lib/getlimits.py +++ b/numpy/lib/getlimits.py @@ -56,21 +56,21 @@ class finfo(object): lambda v:_frz(v.astype('i'))[0], lambda v:array(_frz(v)[0],'d'), lambda v:'%24.16e' % array(_frz(v)[0],'d'), - 'scipy float precision floating point '\ + 'numpy float precision floating point '\ 'number') elif dtype is numeric.single: machar = MachAr(lambda v:array([v],'f'), lambda v:_frz(v.astype('i'))[0], lambda v:array(_frz(v)[0],'f'), # lambda v:'%15.7e' % array(_frz(v)[0],'f'), - "scipy single precision floating "\ + "numpy single precision floating "\ "point number") elif dtype is numeric.longfloat: machar = MachAr(lambda v:array([v],'g'), lambda v:_frz(v.astype('i'))[0], lambda v:array(_frz(v)[0],'g'), # lambda v:str(array(_frz(v)[0],'g')), - "scipy longfloat precision floating "\ + "numpy longfloat precision floating "\ "point number") else: raise ValueError,`dtype` |