From f04d8a88989f04b8ccb7ca4992190d0eff4352a1 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 17 Aug 2004 16:34:51 +0000 Subject: [PATCH] There are no longer any special case test skips. --- Lib/test/test_decimal.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 6c8dc6bc4d..8711e4e6a9 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -298,9 +298,6 @@ class DecimalTest(unittest.TestCase): for filename in os.listdir(dir): if '.decTest' not in filename: continue - ## XXX buildout to include integer and trim - if 'integer' in filename or 'trim' in filename: - continue head, tail = filename.split('.') tester = lambda self, f=filename: self.eval_file(dir + f) setattr(DecimalTest, 'test_' + head, tester) -- 2.50.0