summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2023-03-12 16:58:02 (GMT)
committerGitHub <noreply@github.com>2023-03-12 16:58:02 (GMT)
commite6210621bee4ac10e18b4adc11229b8cc1ee788d (patch)
treead95eb9c95a90ccf3cc5db1fc125147980a4cdf4
parentbb396eece44036a71427e7766fbb8e0247373102 (diff)
downloadcpython-e6210621bee4ac10e18b4adc11229b8cc1ee788d.zip
cpython-e6210621bee4ac10e18b4adc11229b8cc1ee788d.tar.gz
cpython-e6210621bee4ac10e18b4adc11229b8cc1ee788d.tar.bz2
Fixes duplicated word (#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"). Co-authored-by: Hugo Gabriel Eyherabide <hugogabriel.eyherabide@gmail.com>
-rw-r--r--Doc/library/subprocess.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index ccc431b..2b5a82e 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -1622,7 +1622,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