summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorBrice Gros <brice-gros@users.noreply.github.com>2018-02-07 00:46:29 (GMT)
committerGregory P. Smith <greg@krypto.org>2018-02-07 00:46:29 (GMT)
commitfc1ce810f1da593648b4d19e7d582a235ec1dd37 (patch)
tree26aef5f157d3f00f0c60591efe935bfc5d903bb2 /Doc/library/subprocess.rst
parent517da1e58f4c489d4b31579852cde5f7113da08e (diff)
downloadcpython-fc1ce810f1da593648b4d19e7d582a235ec1dd37.zip
cpython-fc1ce810f1da593648b4d19e7d582a235ec1dd37.tar.gz
cpython-fc1ce810f1da593648b4d19e7d582a235ec1dd37.tar.bz2
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.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 27d4288..8673c4b 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -1087,6 +1087,9 @@ calls these functions.
.. versionchanged:: 3.4
Support for the *input* keyword argument was added.
+ .. versionchanged:: 3.6
+ *encoding* and *errors* were added. See :func:`run` for details.
+
.. _subprocess-replacements:
Replacing Older Functions with the :mod:`subprocess` Module