diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-04 19:23:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 19:23:53 (GMT) |
commit | 4443c285a61f2dab4de6c383abad3580bf2aa06d (patch) | |
tree | a66a2414b0d08269e41e6518a313f4a38f5a24e5 | |
parent | 1497d7fdefff8207b8ccde82e96b6f471416c284 (diff) | |
download | cpython-4443c285a61f2dab4de6c383abad3580bf2aa06d.zip cpython-4443c285a61f2dab4de6c383abad3580bf2aa06d.tar.gz cpython-4443c285a61f2dab4de6c383abad3580bf2aa06d.tar.bz2 |
Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)
(cherry picked from commit e12f34b6d8200508bd50cdc9c6c5637732ff56e7)
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 86861b7..47d308b 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"}, |