diff options
author | Tim Peters <tim@python.org> | 2013-10-08 21:29:27 -0500 |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-10-08 21:29:27 -0500 |
commit | 3d1b7a0c10d87d0b79b9ee41871de67470b6313b (patch) | |
tree | 6c75a0e1c27e92b5c8cc8c41345cbbe57d8527ea /Lib/test/test_threading.py | |
parent | e99bdb9694dd472fda932926d87cd6d783ec5da8 (diff) | |
download | cpython-git-3d1b7a0c10d87d0b79b9ee41871de67470b6313b.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_threading.py')
-rw-r--r-- | Lib/test/test_threading.py | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 4d30ee4e07..7bd3082842 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -600,22 +600,22 @@ class ThreadTests(BaseTestCase): self.assertIn(LOOKING_FOR, repr(t)) # we waited at least 5 seconds def test_BoundedSemaphore_limit(self): - # BoundedSemaphore should raise ValueError if released too often. - for limit in range(1, 10): - bs = threading.BoundedSemaphore(limit) - threads = [threading.Thread(target=bs.acquire) - for _ in range(limit)] - for t in threads: - t.start() - for t in threads: - t.join() - threads = [threading.Thread(target=bs.release) - for _ in range(limit)] - for t in threads: - t.start() - for t in threads: - t.join() - self.assertRaises(ValueError, bs.release) + # BoundedSemaphore should raise ValueError if released too often. + for limit in range(1, 10): + bs = threading.BoundedSemaphore(limit) + threads = [threading.Thread(target=bs.acquire) + for _ in range(limit)] + for t in threads: + t.start() + for t in threads: + t.join() + threads = [threading.Thread(target=bs.release) + for _ in range(limit)] + for t in threads: + t.start() + for t in threads: + t.join() + self.assertRaises(ValueError, bs.release) class ThreadJoinOnShutdown(BaseTestCase): |