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 pbrandt
Recipients pbrandt
Date 2008-03-20.20:38:31
SpamBayes Score 0.1571379
Marked as misclassified No
Message-id <1206045512.59.0.667907711794.issue2438@psf.upfronthosting.co.za>
In-reply-to
Content
When using wildcards as arguments to the processes being spawned by
Popen, it seems to interpret them as hard literals.

IE, when doing something like:
>>> import subprocess
>>> output = subprocess.Popen(['ls', '*'],
stdout=subprocess.PIPE).communicate()[0]
ls: *: No such file or directory
>>>
History
Date User Action Args
2008-03-20 20:38:32pbrandtsetspambayes_score: 0.157138 -> 0.1571379
recipients: + pbrandt
2008-03-20 20:38:32pbrandtsetspambayes_score: 0.157138 -> 0.157138
messageid: <1206045512.59.0.667907711794.issue2438@psf.upfronthosting.co.za>
2008-03-20 20:38:31pbrandtlinkissue2438 messages
2008-03-20 20:38:31pbrandtcreate