bpo-6135: Fix subprocess.check_output doc to mention changes in 3.6 (… · python/cpython@7f95c8c (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit 7f95c8c
authored and
committed
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
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -956,6 +956,9 @@ calls these functions. | ||
956 | 956 | .. versionchanged:: 3.4 |
957 | 957 | Support for the *input* keyword argument was added. |
958 | 958 | |
959 | + .. versionchanged:: 3.6 | |
960 | + *encoding* and *errors* were added. See :func:`run` for details. | |
961 | + | |
959 | 962 | .. _subprocess-replacements: |
960 | 963 | |
961 | 964 | Replacing Older Functions with the :mod:`subprocess` Module |