summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-29 20:38:32 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-29 20:38:32 (GMT)
commit40777e66061ce8669cd21d4a268459688397acde (patch)
tree2d8f5bdf762c460300fd8ddc05b6dcfe19beee19
parent6f3900163a50d04ecae173e2703f626f5daf8318 (diff)
downloadcpython-40777e66061ce8669cd21d4a268459688397acde.zip
cpython-40777e66061ce8669cd21d4a268459688397acde.tar.gz
cpython-40777e66061ce8669cd21d4a268459688397acde.tar.bz2
Use the correct function name in docstring.
-rw-r--r--Modules/mathmodule.c2
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.");