Searched refs:return_exceptions (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | runners.py | 64 tasks.gather(*to_cancel, loop=loop, return_exceptions=True))
|
D | tasks.py | 720 def gather(*coros_or_futures, loop=None, return_exceptions=False): argument 771 if not return_exceptions:
|
D | base_events.py | 544 return_exceptions=True,
|
/external/python/cpython3/Lib/unittest/ |
D | async_case.py | 138 asyncio.gather(*to_cancel, loop=loop, return_exceptions=True))
|
/external/python/cpython3/Doc/library/ |
D | asyncio-task.rst | 322 .. awaitablefunction:: gather(\*aws, loop=None, return_exceptions=False) 334 If *return_exceptions* is ``False`` (default), the first 339 If *return_exceptions* is ``True``, exceptions are treated the 391 If *return_exceptions* is False, cancelling gather() after it 400 propagated regardless of *return_exceptions*.
|
D | asyncio-queue.rst | 201 await asyncio.gather(*tasks, return_exceptions=True)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 100 Fix gather to propagate cancellation of itself even with return_exceptions.
|
D | 3.6.6rc1.rst | 162 Fix gather to propagate cancellation of itself even with return_exceptions.
|
D | 3.8.0a1.rst | 4423 Fix gather to propagate cancellation of itself even with return_exceptions.
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 2558 return_exceptions=True, 3244 self._check_success(return_exceptions=False) 3247 self._check_success(return_exceptions=True) 3270 return_exceptions=True) 3381 fut = asyncio.gather(a, b, c, d, e, f, return_exceptions=True)
|