[Python-checkins] r60340 - python/branches/trunk-math/Modules/mathmodule.c

mark.dickinson python-checkins at python.org
Sun Jan 27 03:38:17 CET 2008


Author: mark.dickinson
Date: Sun Jan 27 03:38:17 2008
New Revision: 60340

Modified:
   python/branches/trunk-math/Modules/mathmodule.c
Log:
Remove non-ANSI comments


Modified: python/branches/trunk-math/Modules/mathmodule.c
==============================================================================
--- python/branches/trunk-math/Modules/mathmodule.c	(original)
+++ python/branches/trunk-math/Modules/mathmodule.c	Sun Jan 27 03:38:17 2008
@@ -96,9 +96,7 @@
 	x_is_infinity = Py_IS_INFINITY(x);
 	errno = 0;
 	PyFPE_START_PROTECT("in math_1", return 0);
-	//printf("math_1: Before func call: errno=%d; input = %.20e\n", errno, x);
 	x = (*func)(x);
-	//printf("math_1: Aftern func call: errno=%d; result = %.20e\n", errno, x);
 	PyFPE_END_PROTECT(x);
 
 	/* if the result was a NaN then we should be signalling a ValueError;


More information about the Python-checkins mailing list