Home
last modified time | relevance | path

Searched refs:return_exceptions (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Drunners.py62 tasks.gather(*to_cancel, loop=loop, return_exceptions=True))
Dtasks.py634 def gather(*coros_or_futures, loop=None, return_exceptions=False): argument
674 if not return_exceptions:
Dbase_events.py510 return_exceptions=True,
/external/python/cpython3/Doc/library/
Dasyncio-task.rst302 .. 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*.
Dasyncio-queue.rst193 await asyncio.gather(*tasks, return_exceptions=True)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py2171 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/
D3.7.0b5.rst100 Fix gather to propagate cancellation of itself even with return_exceptions.
D3.6.6rc1.rst162 Fix gather to propagate cancellation of itself even with return_exceptions.