Searched refs:return_exceptions (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | runners.py | 62 tasks.gather(*to_cancel, loop=loop, return_exceptions=True))
|
D | tasks.py | 634 def gather(*coros_or_futures, loop=None, return_exceptions=False): argument 674 if not return_exceptions:
|
D | base_events.py | 510 return_exceptions=True,
|
/external/python/cpython3/Doc/library/ |
D | asyncio-task.rst | 302 .. awaitablefunction:: gather(\*aws, loop=None, return_exceptions=False) 314 If *return_exceptions* is ``False`` (default), the first 319 If *return_exceptions* is ``True``, exceptions are treated the 369 propagated regardless of *return_exceptions*.
|
D | asyncio-queue.rst | 193 await asyncio.gather(*tasks, return_exceptions=True)
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 2171 return_exceptions=True, 2839 self._check_success(return_exceptions=False) 2842 self._check_success(return_exceptions=True) 2865 return_exceptions=True) 2975 fut = asyncio.gather(a, b, c, d, e, f, 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.
|