Kaydet (Commit) f801b0f0 authored tarafından Georg Brandl's avatar Georg Brandl

#2633: clarify meaning of env parameter.

üst fb246c41
...@@ -93,8 +93,9 @@ This module defines one class called :class:`Popen`: ...@@ -93,8 +93,9 @@ This module defines one class called :class:`Popen`:
searching the executable, so you can't specify the program's path relative to searching the executable, so you can't specify the program's path relative to
*cwd*. *cwd*.
If *env* is not ``None``, it defines the environment variables for the new If *env* is not ``None``, it must be a mapping that defines the environment
process. variables for the new process; these are used instead of inheriting the current
process' environment, which is the default behavior.
If *universal_newlines* is :const:`True`, the file objects stdout and stderr are If *universal_newlines* is :const:`True`, the file objects stdout and stderr are
opened as text files, but lines may be terminated by any of ``'\n'``, the Unix opened as text files, but lines may be terminated by any of ``'\n'``, the Unix
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment