diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2010-07-26 13:42:35 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2010-07-26 13:42:35 (GMT) |
commit | fdf94c597f205e151ea744b3dbee38e6218cc79a (patch) | |
tree | 27ecef3efce6631b308d55dc42287205381ec830 | |
parent | b2ec232c675596e0286c51be47f542faaeddde69 (diff) | |
download | cpython-fdf94c597f205e151ea744b3dbee38e6218cc79a.zip cpython-fdf94c597f205e151ea744b3dbee38e6218cc79a.tar.gz cpython-fdf94c597f205e151ea744b3dbee38e6218cc79a.tar.bz2 |
Merged revisions 83163 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83163 | andrew.kuchling | 2010-07-26 09:08:58 -0400 (Mon, 26 Jul 2010) | 1 line
Reword paragraph
........
-rw-r--r-- | Doc/library/os.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 34f23f1..c3f67cb 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2096,8 +2096,9 @@ written in Python, such as a mail server's external command delivery program. The :mod:`subprocess` module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using - this function. Use the :mod:`subprocess` module. Check especially the - :ref:`subprocess-replacements` section. + this function. See the + :ref:`subprocess-replacements` section in the :mod:`subprocess` documentation + for some helpful recipes. Availability: Unix, Windows. |