diff options
author | Georg Brandl <georg@python.org> | 2009-10-29 20:38:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-29 20:38:32 (GMT) |
commit | 40777e66061ce8669cd21d4a268459688397acde (patch) | |
tree | 2d8f5bdf762c460300fd8ddc05b6dcfe19beee19 /Modules | |
parent | 6f3900163a50d04ecae173e2703f626f5daf8318 (diff) | |
download | cpython-40777e66061ce8669cd21d4a268459688397acde.zip cpython-40777e66061ce8669cd21d4a268459688397acde.tar.gz cpython-40777e66061ce8669cd21d4a268459688397acde.tar.bz2 |
Use the correct function name in docstring.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/mathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index b2fee3f..bfbdf76 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -870,7 +870,7 @@ _fsum_error: #undef NUM_PARTIALS PyDoc_STRVAR(math_fsum_doc, -"sum(iterable)\n\n\ +"fsum(iterable)\n\n\ Return an accurate floating point sum of values in the iterable.\n\ Assumes IEEE-754 floating point arithmetic."); |