Home
last modified time | relevance | path

Searched refs:BrokenBarrierError (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/
Dthreading.py650 raise BrokenBarrierError
673 raise BrokenBarrierError
675 raise BrokenBarrierError
743 class BrokenBarrierError(RuntimeError): class
/external/python/cpython3/Lib/test/
Dlock_tests.py901 except threading.BrokenBarrierError:
930 except threading.BrokenBarrierError:
957 except threading.BrokenBarrierError:
986 self.assertRaises(threading.BrokenBarrierError,
1001 self.assertRaises(threading.BrokenBarrierError, barrier.wait)
D_test_multiprocessing.py1842 except threading.BrokenBarrierError:
1871 except threading.BrokenBarrierError:
1899 except threading.BrokenBarrierError:
1935 except threading.BrokenBarrierError:
1954 except threading.BrokenBarrierError:
/external/python/cpython3/Doc/library/
Dthreading.rst1011 This method may raise a :class:`BrokenBarrierError` exception if the
1017 will receive the :class:`BrokenBarrierError` exception.
1026 calls to :meth:`wait` to fail with the :class:`BrokenBarrierError`. Use
1047 .. exception:: BrokenBarrierError
/external/python/cpython3/Doc/whatsnew/
D3.2.rst956 released and a :exc:`~threading.BrokenBarrierError` exception is raised::
962 except BrokenBarrierError: