]> granicus.if.org Git - python/commitdiff
clarify Popen argument
authorBenjamin Peterson <benjamin@python.org>
Sun, 27 Jul 2008 15:22:14 +0000 (15:22 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 27 Jul 2008 15:22:14 +0000 (15:22 +0000)
Doc/library/subprocess.rst

index 02b8d59f663c49dfd3c27a5d04ebdb6261b9b5ce..5ae6eb03f01f8724608a4bf9faf6d56968e10fb3 100644 (file)
@@ -38,9 +38,10 @@ This module defines one class called :class:`Popen`:
 
    Arguments are:
 
-   *args* should be a string, or a sequence of program arguments.  The program to
-   execute is normally the first item in the args sequence or string, but can be
-   explicitly set by using the executable argument.
+   *args* should be a string, or a sequence of program arguments.  The program
+   to execute is normally the first item in the args sequence or the string if a
+   string is given, but can be explicitly set by using the *executable*
+   argument.
 
    On Unix, with *shell=False* (default): In this case, the Popen class uses
    :meth:`os.execvp` to execute the child program. *args* should normally be a