diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-10-19 16:08:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 23:08:34 +0100 |
commit | 4dfb190a33a1deac60306f15d52d2fe11fb93464 (patch) | |
tree | 27a27bcdbeef4635fec46590cb1f9a5fc71bb79d | |
parent | 5456e78f4593edc277ab72fb9a9db1ebae7d4c2d (diff) | |
download | cpython-git-4dfb190a33a1deac60306f15d52d2fe11fb93464.tar.gz |
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).
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index eb1312a949..b0330349df 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:: |