diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-19 22:19:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 22:19:00 (GMT) |
commit | dc785db64d55c3d7a69b10c303e6386e87cfd01b (patch) | |
tree | 2725d4586aa90b9fc2b6ab755c1e7bbf46a381af | |
parent | 4c8da3230a494dac3d7fd3b4396a60038b2be6de (diff) | |
download | cpython-dc785db64d55c3d7a69b10c303e6386e87cfd01b.zip cpython-dc785db64d55c3d7a69b10c303e6386e87cfd01b.tar.gz cpython-dc785db64d55c3d7a69b10c303e6386e87cfd01b.tar.bz2 |
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).
(cherry picked from commit 4dfb190a33a1deac60306f15d52d2fe11fb93464)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-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 eb1312a..b033034 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:: |