diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-14 22:40:34 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-14 22:40:34 +0000 |
commit | 0db3cd6700d18f3bfcaf71405d5da43c1928d55e (patch) | |
tree | e24f9f80510789cd38cd5f788382f4b1dc4a0666 /Lib/test/test_hashlib.py | |
parent | 92d102bf6d90e015360f71c370b540151b4acdba (diff) | |
download | cpython-git-0db3cd6700d18f3bfcaf71405d5da43c1928d55e.tar.gz |
a useful decorator for cleaning up threads
Diffstat (limited to 'Lib/test/test_hashlib.py')
-rw-r--r-- | Lib/test/test_hashlib.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py index b736755836..e77b246075 100644 --- a/Lib/test/test_hashlib.py +++ b/Lib/test/test_hashlib.py @@ -254,14 +254,9 @@ class HashLibTestCase(unittest.TestCase): self.assertEqual(expected_hash, hasher.hexdigest()) - +@test_support.reap_threads def test_main(): - key = test_support.threading_setup() - try: - test_support.run_unittest(HashLibTestCase) - finally: - test_support.threading_cleanup(*key) - + test_support.run_unittest(HashLibTestCase) if __name__ == "__main__": test_main() |