File tree 1 file changed +2
-3
lines changed 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
@@ -80,7 +79,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
80
79
"is representable" },
81
80
{"max_10_exp" , "DBL_MAX_10_EXP -- maximum int e such that 10**e "
82
81
"is representable" },
83
- {"min" , "DBL_MIN -- Minimum positive normalizer float" },
82
+ {"min" , "DBL_MIN -- Minimum positive normalized float" },
84
83
{"min_exp" , "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
85
84
"is a normalized float" },
86
85
{"min_10_exp" , "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
@@ -90,7 +89,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
90
89
{"epsilon" , "DBL_EPSILON -- Difference between 1 and the next "
91
90
"representable float" },
92
91
{"radix" , "FLT_RADIX -- radix of exponent" },
93
- {"rounds" , "FLT_ROUNDS -- addition rounds " },
92
+ {"rounds" , "FLT_ROUNDS -- rounding mode " },
94
93
{0 }
95
94
};
96
95
You can’t perform that action at this time.
0 commit comments