diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 19:07:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 19:07:45 (GMT) |
commit | 28d4ba24c9e56149ac618d66ed89abdc58e42f76 (patch) | |
tree | 461ef138fa6cd198652c540ba292140f3ea113aa /Lib/dos-8x3/test_mat.py | |
parent | c458e945a44fa0d937105f8daafc31bb56101aaf (diff) | |
download | cpython-28d4ba24c9e56149ac618d66ed89abdc58e42f76.zip cpython-28d4ba24c9e56149ac618d66ed89abdc58e42f76.tar.gz cpython-28d4ba24c9e56149ac618d66ed89abdc58e42f76.tar.bz2 |
Another batch...
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): |