mirror of
https://github.com/python/cpython.git
synced 2025-09-28 11:15:17 +00:00
bpo-45896: Fix docs default asyncio event loop on Windows (GH-29857)
This commit is contained in:
parent
49444fb807
commit
f27bef3043
1 changed files with 4 additions and 3 deletions
|
@ -1243,9 +1243,10 @@ async/await code consider using the high-level
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
The default asyncio event loop on **Windows** does not support
|
On Windows, the default event loop :class:`ProactorEventLoop` supports
|
||||||
subprocesses. See :ref:`Subprocess Support on Windows
|
subprocesses, whereas :class:`SelectorEventLoop` does not. See
|
||||||
<asyncio-windows-subprocess>` for details.
|
:ref:`Subprocess Support on Windows <asyncio-windows-subprocess>` for
|
||||||
|
details.
|
||||||
|
|
||||||
.. coroutinemethod:: loop.subprocess_exec(protocol_factory, *args, \
|
.. coroutinemethod:: loop.subprocess_exec(protocol_factory, *args, \
|
||||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE, \
|
stdin=subprocess.PIPE, stdout=subprocess.PIPE, \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue