Skip to content

Commit 60adc4b

Browse files
Fix missing word in sys.float_info docstring (GH-93489) (GH-93496)
(cherry picked from commit e12f34b) Co-authored-by: Mark Dickinson <dickinsm@gmail.com> Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
1 parent 7b3cf3a commit 60adc4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/floatobject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
6464
{"min_exp", "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
6565
"is a normalized float"},
6666
{"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
67-
"a normalized"},
67+
"a normalized float"},
6868
{"dig", "DBL_DIG -- maximum number of decimal digits that "
6969
"can be faithfully represented in a float"},
7070
{"mant_dig", "DBL_MANT_DIG -- mantissa digits"},

0 commit comments

Comments
 (0)