8000 Fix missing word in sys.float_info docstring (GH-93489) (GH-93495) · python/cpython@4443c28 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4443c28

Browse files
Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)
(cherry picked from commit e12f34b) Co-authored-by: Mark Dickinson <dickinsm@gmail.com> Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
1 parent 1497d7f commit 4443c28

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
@@ -71,7 +71,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
7171
{"min_exp", "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
7272
"is a normalized float"},
7373
{"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
74-
"a normalized"},
74+
"a normalized float"},
7575
{"dig", "DBL_DIG -- maximum number of decimal digits that "
7676
"can be faithfully represented in a float"},
7777
{"mant_dig", "DBL_MANT_DIG -- mantissa digits"},

0 commit comments

Comments
 (0)
0