[Python-checkins] r75403 - python/trunk/Doc/library/os.rst

R. David Murray rdmurray at bitdance.com
Wed Oct 14 18:16:39 CEST 2009


I think you lost a 'to' in the corrected sentence.


On Wed, 14 Oct 2009 at 11:58, georg.brandl wrote:

> Author: georg.brandl
> Date: Wed Oct 14 17:57:46 2009
> New Revision: 75403
>
> Log:
> #7126: os.environ changes *do* take effect in subprocesses started with os.system().
>
> Modified:
>   python/trunk/Doc/library/os.rst
>
> Modified: python/trunk/Doc/library/os.rst
> ==============================================================================
> --- python/trunk/Doc/library/os.rst	(original)
> +++ python/trunk/Doc/library/os.rst	Wed Oct 14 17:57:46 2009
> @@ -1836,9 +1836,9 @@
> .. function:: system(command)
>
>    Execute the command (a string) in a subshell.  This is implemented by calling
> -   the Standard C function :cfunc:`system`, and has the same limitations.  Changes
> -   to :data:`os.environ`, :data:`sys.stdin`, etc. are not reflected in the
> -   environment of the executed command.
> +   the Standard C function :cfunc:`system`, and has the same limitations.
> +   Changes :data:`sys.stdin`, etc. are not reflected in the environment of the
> +   executed command.
>
>    On Unix, the return value is the exit status of the process encoded in the
>    format specified for :func:`wait`.  Note that POSIX does not specify the meaning
> _______________________________________________
> Python-checkins mailing list
> Python-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>


More information about the Python-checkins mailing list