Home
last modified time | relevance | path

Searched refs:FIRST_EXCEPTION (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/concurrent/futures/
D__init__.py9 FIRST_EXCEPTION,
D_base.py13 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable
166 if return_when == FIRST_EXCEPTION:
297 elif (return_when == FIRST_EXCEPTION) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py345 FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION variable
369 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
480 return_when == FIRST_EXCEPTION and (not f.cancelled() and
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py627 return_when=futures.FIRST_EXCEPTION)
641 return_when=futures.FIRST_EXCEPTION)
653 return_when=futures.FIRST_EXCEPTION)
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst460 | :const:`FIRST_EXCEPTION` | The function will return when any |
Dasyncio-task.rst569 | :const:`FIRST_EXCEPTION` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1409 asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION))
1439 task = asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION)