[Python-checkins] r75952 - python/trunk/Modules/mathmodule.c

georg.brandl python-checkins at python.org
Thu Oct 29 21:38:33 CET 2009


Author: georg.brandl
Date: Thu Oct 29 21:38:32 2009
New Revision: 75952

Log:
Use the correct function name in docstring.

Modified:
   python/trunk/Modules/mathmodule.c

Modified: python/trunk/Modules/mathmodule.c
==============================================================================
--- python/trunk/Modules/mathmodule.c	(original)
+++ python/trunk/Modules/mathmodule.c	Thu Oct 29 21:38:32 2009
@@ -870,7 +870,7 @@
 #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.");
 


More information about the Python-checkins mailing list