[3.13] gh-123492: Remove unnecessary :func: parentheses (gh-123493) (#123513)

This commit is contained in:
Wei-Hsiang (Matt) Wang 2024-08-31 01:14:48 +08:00 committed by GitHub
parent 8ef277e5e9
commit 9f5f2b7128
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
75 changed files with 151 additions and 151 deletions

View file

@ -230,7 +230,7 @@ accumulate to the point where they affect the final total:
>>> sum([0.1] * 10) == 1.0
True
The :func:`math.fsum()` goes further and tracks all of the "lost digits"
The :func:`math.fsum` goes further and tracks all of the "lost digits"
as values are added onto a running total so that the result has only a
single rounding. This is slower than :func:`sum` but will be more
accurate in uncommon cases where large magnitude inputs mostly cancel