summaryrefslogtreecommitdiff
path: root/numpy/core/getlimits.py
diff options
context:
space:
mode:
authorrgommers <ralf.gommers@googlemail.com>2011-03-02 15:15:10 +0800
committerrgommers <ralf.gommers@googlemail.com>2011-03-02 16:34:13 +0800
commitb52fa654e1f0478fdf8f570797314835ade74765 (patch)
tree35eb3f98da4c2915335441ee115a95df9cdc05a0 /numpy/core/getlimits.py
parent788356d6b7562749f76146d1c4bb05ba2344c865 (diff)
downloadnumpy-b52fa654e1f0478fdf8f570797314835ade74765.tar.gz
DOC: fix doc build complaint about too-long tables.
Diffstat (limited to 'numpy/core/getlimits.py')
-rw-r--r--numpy/core/getlimits.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/numpy/core/getlimits.py b/numpy/core/getlimits.py
index ec1eec066..53728bc59 100644
--- a/numpy/core/getlimits.py
+++ b/numpy/core/getlimits.py
@@ -27,9 +27,10 @@ class finfo(object):
Attributes
----------
- eps : floating point number of the appropriate type
+ eps : float
The smallest representable positive number such that
- ``1.0 + eps != 1.0``.
+ ``1.0 + eps != 1.0``. Type of `eps` is an appropriate floating
+ point type.
epsneg : floating point number of the appropriate type
The smallest representable positive number such that
``1.0 - epsneg != 1.0``.
@@ -62,12 +63,13 @@ class finfo(object):
resolution : floating point number of the appropriate type
The approximate decimal resolution of this type, i.e.,
``10**-precision``.
- tiny : floating point number of the appropriate type
- The smallest positive usable number.
+ tiny : float
+ The smallest positive usable number. Type of `tiny` is an
+ appropriate floating point type.
Parameters
----------
- dtype : floating point type, data-type, or instance
+ dtype : float, dtype, or instance
Kind of floating point data-type about which to get information.
See Also