diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-01-03 12:35:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 12:35:26 (GMT) |
commit | 66136768615472a8d1a18b5018095b9737dbab8c (patch) | |
tree | 6b43906292b8db0829bf9e9c874ad4fbf378e49f /Doc/library/statistics.rst | |
parent | 5d3553b0a8959e7505bbec4de03077dbf135ee4b (diff) | |
download | cpython-66136768615472a8d1a18b5018095b9737dbab8c.zip cpython-66136768615472a8d1a18b5018095b9737dbab8c.tar.gz cpython-66136768615472a8d1a18b5018095b9737dbab8c.tar.bz2 |
bpo-38308: Fix the "versionchanged" for the *weights* of harmonic_mean() (GH-23919)
Diffstat (limited to 'Doc/library/statistics.rst')
-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 6467704..51b5e9c 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) |