mirror of
https://github.com/python/cpython.git
synced 2025-09-24 09:23:02 +00:00
Clean up references to threads in test_queue.
This commit is contained in:
parent
40d1cfece5
commit
be1632beaf
1 changed files with 4 additions and 1 deletions
|
@ -43,6 +43,9 @@ class _TriggerThread(threading.Thread):
|
|||
|
||||
class BlockingTestMixin:
|
||||
|
||||
def tearDown(self):
|
||||
self.t = None
|
||||
|
||||
def do_blocking_test(self, block_func, block_args, trigger_func, trigger_args):
|
||||
self.t = _TriggerThread(trigger_func, trigger_args)
|
||||
self.t.start()
|
||||
|
@ -222,7 +225,7 @@ class FailingQueue(Queue.Queue):
|
|||
raise FailingQueueException, "You Lose"
|
||||
return Queue.Queue._get(self)
|
||||
|
||||
class FailingQueueTest(unittest.TestCase, BlockingTestMixin):
|
||||
class FailingQueueTest(BlockingTestMixin, unittest.TestCase):
|
||||
|
||||
def failing_queue_test(self, q):
|
||||
if not q.empty():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue