We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5f614 commit fdc5a94Copy full SHA for fdc5a94
Objects/floatobject.c
@@ -59,12 +59,14 @@ static PyStructSequence_Field floatinfo_fields[] = {
59
"is a normalized float"},
60
{"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
61
"a normalized"},
62
- {"dig", "DBL_DIG -- digits"},
+ {"dig", "DBL_DIG -- maximum number of decimal digits that "
63
+ "can be faithfully represented in a float"},
64
{"mant_dig", "DBL_MANT_DIG -- mantissa digits"},
65
{"epsilon", "DBL_EPSILON -- Difference between 1 and the next "
66
"representable float"},
67
{"radix", "FLT_RADIX -- radix of exponent"},
- {"rounds", "FLT_ROUNDS -- rounding mode"},
68
+ {"rounds", "FLT_ROUNDS -- rounding mode used for arithmetic "
69
+ "operations"},
70
{0}
71
};
72
0 commit comments