Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Drunners.py64 tasks.gather(*to_cancel, loop=loop, return_exceptions=True))
Dtasks.py720 def gather(*coros_or_futures, loop=None, return_exceptions=False): argument
771 if not return_exceptions:
Dbase_events.py544 return_exceptions=True,
/external/python/cpython3/Lib/unittest/
Dasync_case.py138 asyncio.gather(*to_cancel, loop=loop, return_exceptions=True))
/external/python/cpython3/Doc/library/
Dasyncio-task.rst322 .. 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*.
Dasyncio-queue.rst201 await asyncio.gather(*tasks, 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.
D3.8.0a1.rst4423 Fix gather to propagate cancellation of itself even with return_exceptions.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py2558 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)