diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-02-18 08:58:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 08:58:48 (GMT) |
commit | 2923d87ca258b9d421e8147b12f0d98295ee3f8e (patch) | |
tree | 64b51c1b6999ba6292d05f2a5ced0a318f4131a4 /Doc/library/asyncio-subprocess.rst | |
parent | d85121660ea50bbe8fbd31797aa6e4afe0850388 (diff) | |
download | cpython-2923d87ca258b9d421e8147b12f0d98295ee3f8e.zip cpython-2923d87ca258b9d421e8147b12f0d98295ee3f8e.tar.gz cpython-2923d87ca258b9d421e8147b12f0d98295ee3f8e.tar.bz2 |
bpo-46777: Fix incorrect use of directives in asyncio documentation (GH-31388)
Diffstat (limited to 'Doc/library/asyncio-subprocess.rst')
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index fd1f9c9..748b704 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -75,12 +75,8 @@ Creating Subprocesses See the documentation of :meth:`loop.subprocess_exec` for other parameters. - .. deprecated-removed:: 3.8 3.10 - - The ``loop`` parameter. This function has been implicitly getting the - current running loop since 3.7. See - :ref:`What's New in 3.10's Removed section <whatsnew310-removed>` - for more information. + .. versionchanged:: 3.10 + Removed the *loop* parameter. .. coroutinefunction:: create_subprocess_shell(cmd, stdin=None, \ @@ -106,12 +102,8 @@ 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. This function has been implicitly getting the - current running loop since 3.7. See - :ref:`What's New in 3.10's Removed section <whatsnew310-removed>` - for more information. + .. versionchanged:: 3.10 + Removed the *loop* parameter. .. note:: |