summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorStefano Taschini <taschini@users.noreply.github.com>2018-03-26 09:41:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-03-26 09:41:30 (GMT)
commit0301c9bdd1ebd788d1334cf3fe06c48f35bab0dc (patch)
tree8a3308e52f4ec60ef29f5f853cff536fb7d20d84 /Objects
parent3ab44c0783eebdff687014f7d14d5dec59b6bd39 (diff)
downloadcpython-0301c9bdd1ebd788d1334cf3fe06c48f35bab0dc.zip
cpython-0301c9bdd1ebd788d1334cf3fe06c48f35bab0dc.tar.gz
cpython-0301c9bdd1ebd788d1334cf3fe06c48f35bab0dc.tar.bz2
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/floatobject.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 47a174c..67f9e5d 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1,4 +1,3 @@
-
/* Float object implementation */
/* XXX There should be overflow checks here, but it's hard to check
@@ -54,7 +53,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
"is representable"},
{"max_10_exp", "DBL_MAX_10_EXP -- maximum int e such that 10**e "
"is representable"},
- {"min", "DBL_MIN -- Minimum positive normalizer float"},
+ {"min", "DBL_MIN -- Minimum positive normalized float"},
{"min_exp", "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
"is a normalized float"},
{"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
@@ -64,7 +63,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
{"epsilon", "DBL_EPSILON -- Difference between 1 and the next "
"representable float"},
{"radix", "FLT_RADIX -- radix of exponent"},
- {"rounds", "FLT_ROUNDS -- addition rounds"},
+ {"rounds", "FLT_ROUNDS -- rounding mode"},
{0}
};