diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-01-03 05:35:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 14:35:26 +0200 |
commit | 66136768615472a8d1a18b5018095b9737dbab8c (patch) | |
tree | 6b43906292b8db0829bf9e9c874ad4fbf378e49f /Doc | |
parent | bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073) (diff) | |
download | cpython-66136768615472a8d1a18b5018095b9737dbab8c.tar.gz cpython-66136768615472a8d1a18b5018095b9737dbab8c.tar.bz2 cpython-66136768615472a8d1a18b5018095b9737dbab8c.zip |
bpo-38308: Fix the "versionchanged" for the *weights* of harmonic_mean() (GH-23919)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/statistics.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst index 6467704006d..51b5e9c404c 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -198,7 +198,7 @@ However, for reading convenience, most of the examples show sorted sequences. .. versionadded:: 3.6 - .. versionchanged:: 3.8 + .. versionchanged:: 3.10 Added support for *weights*. .. function:: median(data) |