diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2023-02-09 21:36:24 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 17:36:24 +0000 |
commit | 6d92373f500eb81a175516b3abb16e21f0806c1f (patch) | |
tree | 5d5f97210c627e63b112e4329b7188f7bfa3076f | |
parent | f23371fbc9bb283207ecebf8efd81a22538b4327 (diff) | |
download | cpython-git-6d92373f500eb81a175516b3abb16e21f0806c1f.tar.gz |
gh-101283: Fix 'versionchanged' for the shell=True fallback on Windows in 3.12 (GH-101728)
-rw-r--r-- | Doc/library/subprocess.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index d792a43eeb..ccc431b2d9 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -111,7 +111,7 @@ underlying :class:`Popen` interface can be used directly. Added the *text* parameter, as a more understandable alias of *universal_newlines*. Added the *capture_output* parameter. - .. versionchanged:: 3.11.3 + .. versionchanged:: 3.12 Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and @@ -495,7 +495,7 @@ functions. *executable* parameter accepts a bytes and :term:`path-like object` on Windows. - .. versionchanged:: 3.11.3 + .. versionchanged:: 3.12 Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and @@ -1174,7 +1174,7 @@ calls these functions. .. versionchanged:: 3.3 *timeout* was added. - .. versionchanged:: 3.11.3 + .. versionchanged:: 3.12 Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and @@ -1214,7 +1214,7 @@ calls these functions. .. versionchanged:: 3.3 *timeout* was added. - .. versionchanged:: 3.11.3 + .. versionchanged:: 3.12 Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and @@ -1277,7 +1277,7 @@ calls these functions. .. versionadded:: 3.7 *text* was added as a more readable alias for *universal_newlines*. - .. versionchanged:: 3.11.3 + .. versionchanged:: 3.12 Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and |