bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329)

This commit is contained in:
Xiang Zhang 2017-02-27 11:46:37 +08:00 committed by GitHub
parent b7fb1e25c8
commit 8400ae209b
3 changed files with 9 additions and 0 deletions

View file

@ -170,6 +170,9 @@ class ThreadTests(BaseTestCase):
mutex.acquire()
self.assertIn(tid, threading._active)
self.assertIsInstance(threading._active[tid], threading._DummyThread)
#Issue 29376
self.assertTrue(threading._active[tid].is_alive())
self.assertRegex(repr(threading._active[tid]), '_DummyThread')
del threading._active[tid]
# PyThreadState_SetAsyncExc() is a CPython-only gimmick, not (currently)