This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lregebro
Recipients georg.brandl, lregebro
Date 2008-07-27.14:39:37
SpamBayes Score 0.060410414
Marked as misclassified No
Message-id <1217169579.5.0.521766841599.issue3452@psf.upfronthosting.co.za>
In-reply-to
Content
In the documentation of subprocess.Popen the docs say:

"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. "

The statement that the program to exectute is the "first item in the
args sequence or string" indicates that the first item in a string like
"ls -l", i.e. the "ls" will be the program. The next paragraph however
makes it clear that this is not the case, but by then the damage is
done, and you think that passing in "ls -l" will work.

Rewording this, perhaps by saying "The program to execute is normally
the first item in the args sequence, or the string if a string a given",
would make this clear.
History
Date User Action Args
2008-07-27 14:39:39lregebrosetrecipients: + lregebro, georg.brandl
2008-07-27 14:39:39lregebrosetmessageid: <1217169579.5.0.521766841599.issue3452@psf.upfronthosting.co.za>
2008-07-27 14:39:38lregebrolinkissue3452 messages
2008-07-27 14:39:37lregebrocreate