bpo-41217: Fix incorrect note in the asyncio.create_subprocess_shell() docs (GH-21360)
On Windows, the default asyncio event loop is ProactorEventLoop (as of 3.8).
This commit is contained in:
parent
5456e78f45
commit
4dfb190a33
|
@ -110,10 +110,8 @@ Creating Subprocesses
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
The default asyncio event loop implementation on **Windows** does not
|
Subprocesses are available for Windows if a :class:`ProactorEventLoop` is
|
||||||
support subprocesses. Subprocesses are available for Windows if a
|
used. See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>`
|
||||||
:class:`ProactorEventLoop` is used.
|
|
||||||
See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>`
|
|
||||||
for details.
|
for details.
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
Loading…
Reference in New Issue