From b52fa654e1f0478fdf8f570797314835ade74765 Mon Sep 17 00:00:00 2001 From: rgommers Date: Wed, 2 Mar 2011 15:15:10 +0800 Subject: DOC: fix doc build complaint about too-long tables. --- numpy/core/getlimits.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'numpy/core/getlimits.py') 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 -- cgit v1.2.1