[Python-checkins] Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)

mdickinson webhook-mailer at python.org
Sat Jun 4 15:23:57 EDT 2022


https://github.com/python/cpython/commit/4443c285a61f2dab4de6c383abad3580bf2aa06d
commit: 4443c285a61f2dab4de6c383abad3580bf2aa06d
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: mdickinson <dickinsm at gmail.com>
date: 2022-06-04T20:23:53+01:00
summary:

Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)

(cherry picked from commit e12f34b6d8200508bd50cdc9c6c5637732ff56e7)

Co-authored-by: Mark Dickinson <dickinsm at gmail.com>

Co-authored-by: Mark Dickinson <dickinsm at gmail.com>

files:
M Objects/floatobject.c

diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 86861b7e28dce..47d308b8eb370 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"},



More information about the Python-checkins mailing list