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

mdickinson webhook-mailer at python.org
Sat Jun 4 12:28:24 EDT 2022


https://github.com/python/cpython/commit/e12f34b6d8200508bd50cdc9c6c5637732ff56e7
commit: e12f34b6d8200508bd50cdc9c6c5637732ff56e7
branch: main
author: Mark Dickinson <dickinsm at gmail.com>
committer: mdickinson <dickinsm at gmail.com>
date: 2022-06-04T17:28:14+01:00
summary:

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

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