diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-07-07 07:28:01 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-07-07 07:28:01 (GMT) |
commit | 5f8e78545ce03c12207cff711001e162539beb75 (patch) | |
tree | 5d657154eb0720492c49f1b96df85b55ab3041d1 /Lib/subprocess.py | |
parent | ef9b47f0b8980ce9df5c8a4112799e621d099ee8 (diff) | |
parent | 385521c90e35565ceb1bc54ab31b217321fd2d84 (diff) | |
download | cpython-5f8e78545ce03c12207cff711001e162539beb75.zip cpython-5f8e78545ce03c12207cff711001e162539beb75.tar.gz cpython-5f8e78545ce03c12207cff711001e162539beb75.tar.bz2 |
(3.3->default) Cleanup of documentation change from #17860
Reformulated the textual change, and applied it to the docstring as well.
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index d299f04..3d77b26 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -104,6 +104,9 @@ in the child process prior to executing the command. If env is not None, it defines the environment variables for the new process. +If universal_newlines is false, the file objects stdin, stdout and stderr +are opened as binary files, and no line ending conversion is done. + If universal_newlines is true, the file objects stdout and stderr are opened as a text files, but lines may be terminated by any of '\n', the Unix end-of-line convention, '\r', the old Macintosh convention or |