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

mark.dickinson python-checkins at python.org
Fri Jun 20 17:26:20 CEST 2008


Author: mark.dickinson
Date: Fri Jun 20 17:26:19 2008
New Revision: 64428

Log:
Fix another typo in math_sum comment


Modified:
   python/trunk/Modules/mathmodule.c

Modified: python/trunk/Modules/mathmodule.c
==============================================================================
--- python/trunk/Modules/mathmodule.c	(original)
+++ python/trunk/Modules/mathmodule.c	Fri Jun 20 17:26:19 2008
@@ -328,7 +328,7 @@
    overflow of the first partial sum.
 
    Note 3: The intermediate values lo, yr, and hi are declared volatile so
-   aggressive compilers won't algebraicly reduce lo to always be exactly 0.0.
+   aggressive compilers won't algebraically reduce lo to always be exactly 0.0.
    Also, the volatile declaration forces the values to be stored in memory as
    regular doubles instead of extended long precision (80-bit) values.  This
    prevents double rounding because any addition or subtraction of two doubles


More information about the Python-checkins mailing list