-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
bpo-6135: Fix subprocess.check_output() doc to mention changes in 3.6
#5564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-6135: Fix subprocess.check_output() doc to mention changes in 3.6
#5564
Conversation
…hanges done in 3.6
subprocess.check_output() not mentionning changes in 3.6subprocess.check_output() not mentioning changes in 3.6
|
Thank you for this contribution
Thank you |
|
We can do without a bpo issue on this one, it's a documentation update. Also I would not bother describing the meaning the parameters in the check_output docs. It already refers to run for full details. I added a note to the versionchanged text that refers people to look at run for details on the new parameters. |
subprocess.check_output() not mentioning changes in 3.6subprocess.check_output() doc to mention changes in 3.6
|
Thanks @brice-gros for the PR, and @gpshead for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7. |
…ythonGH-5564) Fixes the documentation for `subprocess.check_output()` not mentioning that the encoding and errors parameters were added in 3.6. (cherry picked from commit fc1ce81) Co-authored-by: Brice Gros <brice-gros@users.noreply.github.com>
|
GH-5572 is a backport of this pull request to the 3.7 branch. |
…ythonGH-5564) Fixes the documentation for `subprocess.check_output()` not mentioning that the encoding and errors parameters were added in 3.6. (cherry picked from commit fc1ce81) Co-authored-by: Brice Gros <brice-gros@users.noreply.github.com>
|
GH-5573 is a backport of this pull request to the 3.6 branch. |
More parameters were supported by
subprocess.check_output()in python 3.6See:
Now the doc mentions these changes allowing users targeting multiple python 3 versions to be aware not to use these parameters.
https://bugs.python.org/issue6135