File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
-
2
1
/* Float object implementation */
3
2
4
3
/* XXX There should be overflow checks here, but it's hard to check
@@ -54,7 +53,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
54
53
"is representable" },
55
54
{"max_10_exp" , "DBL_MAX_10_EXP -- maximum int e such that 10**e "
56
55
"is representable" },
57
- {"min" , "DBL_MIN -- Minimum positive normalizer float" },
56
+ {"min" , "DBL_MIN -- Minimum positive normalized float" },
58
57
{"min_exp" , "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
59
58
"is a normalized float" },
60
59
{"min_10_exp" , "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
@@ -64,7 +63,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
64
63
{"epsilon" , "DBL_EPSILON -- Difference between 1 and the next "
65
64
"representable float" },
66
65
{"radix" , "FLT_RADIX -- radix of exponent" },
67
- {"rounds" , "FLT_ROUNDS -- addition rounds " },
66
+ {"rounds" , "FLT_ROUNDS -- rounding mode " },
68
67
{0 }
69
68
};
70
69
You can’t perform that action at this time.
0 commit comments