bpo-6135: Fix subprocess.check_output doc to mention changes in 3.6 (… · python/cpython@fc1ce81 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit fc1ce81
authored and
committed
bpo-6135: Fix subprocess.check_output doc to mention changes in 3.6 (GH-5564)
Fixes the documentation for `subprocess.check_output()` not mentioning that the encoding and errors parameters were added in 3.6.
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1087,6 +1087,9 @@ calls these functions. | ||
1087 | 1087 | .. versionchanged:: 3.4 |
1088 | 1088 | Support for the *input* keyword argument was added. |
1089 | 1089 | |
1090 | + .. versionchanged:: 3.6 | |
1091 | + *encoding* and *errors* were added. See :func:`run` for details. | |
1092 | + | |
1090 | 1093 | .. _subprocess-replacements: |
1091 | 1094 | |
1092 | 1095 | Replacing Older Functions with the :mod:`subprocess` Module |