Subtle hack so the eps printed is not dependent on the formatting
habits of the C library we happen to use...
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index af84d2a..6d6bc44 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -3,8 +3,9 @@
 
 from test_support import *
 
-eps=1e-5
-print 'math module, testing with eps', eps
+seps='1e-05'
+eps = eval(seps)
+print 'math module, testing with eps', seps
 import math
 
 def testit(name, value, expected):