diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2022-06-04 16:28:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 16:28:14 (GMT) |
commit | e12f34b6d8200508bd50cdc9c6c5637732ff56e7 (patch) | |
tree | 438141883868c165a59cf126014bafc3ac400528 /Objects | |
parent | 8150b8cf7fe09d601246f5bdc6456a0e31f31bca (diff) | |
download | cpython-e12f34b6d8200508bd50cdc9c6c5637732ff56e7.zip cpython-e12f34b6d8200508bd50cdc9c6c5637732ff56e7.tar.gz cpython-e12f34b6d8200508bd50cdc9c6c5637732ff56e7.tar.bz2 |
Fix missing word in sys.float_info docstring (GH-93489)
Diffstat (limited to 'Objects')
-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"}, |