Home
last modified time | relevance | path

Searched refs:_limbo (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/
Dthreading.py734 _limbo = {} variable
845 _limbo[self] = self
850 del _limbo[self]
909 del _limbo[self]
1236 return len(_active) + len(_limbo)
1242 return list(_active.values()) + list(_limbo.values())
1253 return list(_active.values()) + list(_limbo.values())
1340 _limbo.clear()
/external/python/cpython2/Lib/
Dthreading.py626 _limbo = {} variable
734 _limbo[self] = self
739 del _limbo[self]
789 del _limbo[self]
1166 return len(_active) + len(_limbo)
1172 return _active.values() + _limbo.values()
1183 return _active.values() + _limbo.values()
1231 _limbo.clear()
/external/python/cpython2/Lib/test/
Dtest_threading.py264 t in threading._limbo,
/external/python/cpython3/Lib/test/
Dtest_threading.py279 t in threading._limbo,