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

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


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

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

(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 2e02f37f4a580..5af2678773114 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -64,7 +64,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