Home
last modified time | relevance | path

Searched refs:_DummyThread (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/
Dthreading.py1119 class _DummyThread(Thread): class
1154 return _DummyThread()
/external/python/cpython3/Lib/
Dthreading.py1293 class _DummyThread(Thread): class
1328 return _DummyThread()
/external/python/cpython2/Lib/test/
Dtest_threading.py161 self.assertIsInstance(threading._active[tid], threading._DummyThread)
/external/python/cpython3/Lib/test/
Dtest_threading.py179 self.assertIsInstance(threading._active[tid], threading._DummyThread)
/external/python/cpython3/Misc/NEWS.d/
D3.6.1rc1.rst280 Fix assertion error in threading._DummyThread.is_alive().
D3.5.4rc1.rst778 Fix assertion error in threading._DummyThread.is_alive().
D3.9.0a6.rst660 for _main_thread, instead of a _DummyThread instance.
D3.7.0a1.rst3365 Fix assertion error in threading._DummyThread.is_alive().
/external/python/cpython2/Misc/
DHISTORY1916 - _DummyThread objects in the threading module now delete self.__block that is
1919 a _DummyThread object. Fixes bug #1089632.
/external/python/cpython3/Misc/
DHISTORY19300 - _DummyThread objects in the threading module now delete self.__block that is
19303 a _DummyThread object. Fixes bug #1089632.