Home
last modified time | relevance | path

Searched refs:run_coroutine_threadsafe (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Doc/library/
Dasyncio-dev.rst90 :func:`run_coroutine_threadsafe` function should be used. It returns a
98 future = asyncio.run_coroutine_threadsafe(coro_func(), loop)
Dasyncio-api-index.rst54 * - :func:`run_coroutine_threadsafe`
Dasyncio-task.rst749 .. function:: run_coroutine_threadsafe(coro, loop)
763 future = asyncio.run_coroutine_threadsafe(coro, loop)
/third_party/python/Lib/asyncio/
Dtasks.py859 def run_coroutine_threadsafe(coro, loop): function
/third_party/python/Misc/NEWS.d/
D3.5.1rc1.rst470 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
D3.6.0a1.rst2767 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
/third_party/python/Lib/test/test_asyncio/
Dtest_tasks.py3612 future = asyncio.run_coroutine_threadsafe(coro, self.loop)
/third_party/python/Doc/whatsnew/
D3.10.rst1911 using :func:`asyncio.run_coroutine_threadsafe` instead.
D3.5.rst829 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
D3.6.rst831 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
/third_party/python/Misc/
DHISTORY336 - Issue #25304: Add asyncio.run_coroutine_threadsafe(). This lets you