Home
last modified time | relevance | path

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

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/asyncio/
Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/external/python/cpython3/Lib/asyncio/
Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/asyncio/
Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/asyncio/
H A Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
H A Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
H A Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/asyncio/
Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/asyncio/
Dtasks.py718 def gather(*coros_or_futures, return_exceptions=False): argument
764 if not return_exceptions:
Drunners.py201 loop.run_until_complete(tasks.gather(*to_cancel, return_exceptions=True))
Dbase_events.py553 return_exceptions=True)
/aosp_15_r20/external/python/cpython3/Doc/library/
Dasyncio-task.rst432 .. awaitablefunction:: gather(*aws, return_exceptions=False)
444 If *return_exceptions* is ``False`` (default), the first
449 If *return_exceptions* is ``True``, exceptions are treated the
505 If *return_exceptions* is False, cancelling gather() after it
514 propagated regardless of *return_exceptions*.
Dasyncio-queue.rst201 await asyncio.gather(*tasks, return_exceptions=True)
/aosp_15_r20/external/python/cpython3/Lib/test/test_asyncio/
Dtest_locks.py932 r1, r2 = await asyncio.gather(t1, t2, return_exceptions=True)
1044 await asyncio.gather(*tasks, return_exceptions=True)
1123 await asyncio.gather(*waiters, return_exceptions=True)
Dtest_tasks.py2139 return_exceptions=True)
2895 self._check_success(return_exceptions=False)
2898 self._check_success(return_exceptions=True)
2921 return_exceptions=True)
3039 fut = asyncio.gather(a, b, c, d, e, f, return_exceptions=True)
/aosp_15_r20/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.