diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-08-08 17:30:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-08 17:30:33 (GMT) |
commit | aab6f7173a3b825599629dd6fa5cb7e477421595 (patch) | |
tree | 733c4cfc21fdf2e7b776da2f3199a83476b86506 /Doc/library | |
parent | d4ac094cf9d15ec5705ec0fe8771df9e6ba915b9 (diff) | |
download | cpython-aab6f7173a3b825599629dd6fa5cb7e477421595.zip cpython-aab6f7173a3b825599629dd6fa5cb7e477421595.tar.gz cpython-aab6f7173a3b825599629dd6fa5cb7e477421595.tar.bz2 |
GH-100425: Note improved commutativity in sum(). (GH-107785)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index b271067..88a7fdf 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1752,7 +1752,7 @@ are always available. They are listed here in alphabetical order. The *start* parameter can be specified as a keyword argument. .. versionchanged:: 3.12 Summation of floats switched to an algorithm - that gives higher accuracy on most builds. + that gives higher accuracy and better commutativity on most builds. .. class:: super() |