From: Georg Brandl Date: Thu, 29 Oct 2009 20:38:32 +0000 (+0000) Subject: Use the correct function name in docstring. X-Git-Tag: v2.7a1~198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40777e66061ce8669cd21d4a268459688397acde;p=python Use the correct function name in docstring. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index b2fee3ff3f..bfbdf7671f 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.");