[Python-checkins] bpo-41217: Fix incorrect note in the asyncio.create_subprocess_shell() docs (GH-21360)

Zackery Spytz webhook-mailer at python.org
Mon Oct 19 18:08:41 EDT 2020


https://github.com/python/cpython/commit/4dfb190a33a1deac60306f15d52d2fe11fb93464
commit: 4dfb190a33a1deac60306f15d52d2fe11fb93464
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-10-19T23:08:34+01:00
summary:

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).

files:
M Doc/library/asyncio-subprocess.rst

diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
index eb1312a949a10..b0330349dfb65 100644
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -110,10 +110,8 @@ Creating Subprocesses
 
 .. note::
 
-   The default asyncio event loop implementation on **Windows** does not
-   support subprocesses. Subprocesses are available for Windows if a
-   :class:`ProactorEventLoop` is used.
-   See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>`
+   Subprocesses are available for Windows if a :class:`ProactorEventLoop` is
+   used. See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>`
    for details.
 
 .. seealso::



More information about the Python-checkins mailing list