From 6829b1256a596301f82e3573214230186a4babfd Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 12 Mar 2023 10:00:04 -0700 Subject: [PATCH] [3.11] Fixes duplicated word (GH-102623) (#102624) Fixes duplicated word (GH-102623) In line 1627, the end of the sentence reads "only that that it may be." but it should read "only that it may be" (or alternatively "only that that may be"). (cherry picked from commit e6210621bee4ac10e18b4adc11229b8cc1ee788d) Co-authored-by: Guido van Rossum Co-authored-by: Hugo Gabriel Eyherabide --- Doc/library/subprocess.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 9b153a2def1a..63d52062bc23 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -1624,7 +1624,7 @@ that. It is safe to set these to false on any Python version. They will have no effect on older versions when unsupported. Do not assume the attributes are available to read. Despite their names, a true value does not indicate that the -corresponding function will be used, only that that it may be. +corresponding function will be used, only that it may be. Please file issues any time you have to use these private knobs with a way to reproduce the issue you were seeing. Link to that issue from a comment in your -- 2.47.3