diff options
Diffstat (limited to 'Lib/dos_8x3/test_mat.py')
-rw-r--r-- | Lib/dos_8x3/test_mat.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/dos_8x3/test_mat.py b/Lib/dos_8x3/test_mat.py index af84d2a..6d6bc44 100644 --- a/Lib/dos_8x3/test_mat.py +++ b/Lib/dos_8x3/test_mat.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): |