diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-17 16:34:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-17 16:34:51 (GMT) |
commit | f04d8a88989f04b8ccb7ca4992190d0eff4352a1 (patch) | |
tree | 55951959dc04293de4a706a3ddafdd70668bee90 | |
parent | 673cb28b2a9e02d1c856280bf72357eccea55a98 (diff) | |
download | cpython-f04d8a88989f04b8ccb7ca4992190d0eff4352a1.zip cpython-f04d8a88989f04b8ccb7ca4992190d0eff4352a1.tar.gz cpython-f04d8a88989f04b8ccb7ca4992190d0eff4352a1.tar.bz2 |
There are no longer any special case test skips.
-rw-r--r-- | Lib/test/test_decimal.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 6c8dc6b..8711e4e 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) |