From: Mark Dickinson Date: Sat, 4 Jun 2022 16:28:14 +0000 (+0100) Subject: Fix missing word in sys.float_info docstring (GH-93489) X-Git-Tag: v3.12.0a1~1360 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e12f34b6d8200508bd50cdc9c6c5637732ff56e7;p=thirdparty%2FPython%2Fcpython.git Fix missing word in sys.float_info docstring (GH-93489) --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 86861b7e28dc..47d308b8eb37 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -71,7 +71,7 @@ static PyStructSequence_Field floatinfo_fields[] = { {"min_exp", "DBL_MIN_EXP -- minimum int e such that radix**(e-1) " "is a normalized float"}, {"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is " - "a normalized"}, + "a normalized float"}, {"dig", "DBL_DIG -- maximum number of decimal digits that " "can be faithfully represented in a float"}, {"mant_dig", "DBL_MANT_DIG -- mantissa digits"},