diff options
author | Georg Brandl <georg@python.org> | 2009-10-18 07:58:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-18 07:58:12 (GMT) |
commit | 11abfe640fbfe37e7b5770ceebf21387e355951f (patch) | |
tree | c45ca5626fcca96d7de6d2c12f14867de652c3e7 /Doc | |
parent | 31802d093f09dbf4be874e72add58b88047faa97 (diff) | |
download | cpython-11abfe640fbfe37e7b5770ceebf21387e355951f.zip cpython-11abfe640fbfe37e7b5770ceebf21387e355951f.tar.gz cpython-11abfe640fbfe37e7b5770ceebf21387e355951f.tar.bz2 |
Fix missing word.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 432de12..c8e47fc 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1837,7 +1837,7 @@ written in Python, such as a mail server's external command delivery program. 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 :data:`sys.stdin`, etc. are not reflected in the environment of the + Changes to :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 |