diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-07 03:16:17 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-07 03:16:17 (GMT) |
commit | 050acaed9926aa0a0367ec1baebbfd797c33ad74 (patch) | |
tree | c72f32f184d3c8fe62d0100ffab7494f2f84365d /Doc/whatsnew | |
parent | 173a1f3dc7a8b43b49e3ef483714c1d51b60d868 (diff) | |
download | cpython-050acaed9926aa0a0367ec1baebbfd797c33ad74.zip cpython-050acaed9926aa0a0367ec1baebbfd797c33ad74.tar.gz cpython-050acaed9926aa0a0367ec1baebbfd797c33ad74.tar.bz2 |
Issue #6135: Adds encoding and errors parameters to subprocess
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 4cf77f9..fde5159 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -589,6 +589,9 @@ proc: ...``) or call explicitly the :meth:`~subprocess.Popen.wait` method to read the exit status of the child process (Contributed by Victor Stinner in :issue:`26741`). +The :class:`subprocess.Popen` constructor and all functions that pass arguments +through to it now accept *encoding* and *errors* arguments. Specifying either +of these will enable text mode for the *stdin*, *stdout* and *stderr* streams. telnetlib --------- |