mirror of https://github.com/python/cpython.git
Less red ink (warning->note) and add link to def of side-by-side assembly.
This commit is contained in:
parent
2d69358802
commit
7203081025
|
@ -102,13 +102,15 @@ This module defines one class called :class:`Popen`:
|
||||||
variables for the new process; these are used instead of inheriting the current
|
variables for the new process; these are used instead of inheriting the current
|
||||||
process' environment, which is the default behavior.
|
process' environment, which is the default behavior.
|
||||||
|
|
||||||
.. warning::
|
.. note::
|
||||||
|
|
||||||
When replacing the environment you must provide any variables
|
If specified, *env* must provide any variables required
|
||||||
required for the program to execute. On Windows, in order to run
|
for the program to execute. On Windows, in order to run a
|
||||||
a side-by-side assembly the specified *env* must include a valid
|
`side-by-side assembly`_ the specified *env* **must** include a valid
|
||||||
:envvar:`SystemRoot`.
|
:envvar:`SystemRoot`.
|
||||||
|
|
||||||
|
.. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
|
||||||
|
|
||||||
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
|
||||||
end-of-line convention, ``'\r'``, the old Macintosh convention or ``'\r\n'``, the
|
end-of-line convention, ``'\r'``, the old Macintosh convention or ``'\r\n'``, the
|
||||||
|
|
Loading…
Reference in New Issue