diff options
author | Yurii Karabas <1998uriyyo@gmail.com> | 2020-11-29 12:50:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-29 12:50:57 (GMT) |
commit | 86150d39c888579b65841f4391d054b7b3eff9f2 (patch) | |
tree | 9f240380bed2fb7eea2a409fecb7cc6a566cfb2a /Doc/library/asyncio-subprocess.rst | |
parent | c642374b3ef72f6f300616f07aea2a3f9ed83e51 (diff) | |
download | cpython-86150d39c888579b65841f4391d054b7b3eff9f2.zip cpython-86150d39c888579b65841f4391d054b7b3eff9f2.tar.gz cpython-86150d39c888579b65841f4391d054b7b3eff9f2.tar.bz2 |
bpo-42392: Remove deprecated loop parameter from docs (GH-23552)
Diffstat (limited to 'Doc/library/asyncio-subprocess.rst')
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index b033034..ea67430 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -62,8 +62,7 @@ Creating Subprocesses ===================== .. coroutinefunction:: create_subprocess_exec(program, \*args, stdin=None, \ - stdout=None, stderr=None, loop=None, \ - limit=None, \*\*kwds) + stdout=None, stderr=None, limit=None, \*\*kwds) Create a subprocess. @@ -76,13 +75,9 @@ Creating Subprocesses See the documentation of :meth:`loop.subprocess_exec` for other parameters. - .. deprecated-removed:: 3.8 3.10 - - The *loop* parameter. .. coroutinefunction:: create_subprocess_shell(cmd, stdin=None, \ - stdout=None, stderr=None, loop=None, \ - limit=None, \*\*kwds) + stdout=None, stderr=None, limit=None, \*\*kwds) Run the *cmd* shell command. @@ -104,10 +99,6 @@ Creating Subprocesses escape whitespace and special shell characters in strings that are going to be used to construct shell commands. - .. deprecated-removed:: 3.8 3.10 - - The *loop* parameter. - .. note:: Subprocesses are available for Windows if a :class:`ProactorEventLoop` is |