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 r.david.murray
Recipients docs@python, eryksun, iMath, r.david.murray
Date 2017-04-16.16:49:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1492361390.81.0.515305960715.issue30079@psf.upfronthosting.co.za>
In-reply-to
Content
Note the subtlety here on unix:

rdmurray@pydev:~/python/p36[3.6]>cat temp.sh
#!/bin/bash
echo $0
echo $1

>>> subprocess.call(['./temp.sh', 'spam', 'eggs'], shell=True)
./temp.sh


0
>>> subprocess.call(['./temp.sh $0 $1', 'spam', 'eggs'], shell=True)
./temp.sh
spam
eggs
0
History
Date User Action Args
2017-04-16 16:49:50r.david.murraysetrecipients: + r.david.murray, docs@python, eryksun, iMath
2017-04-16 16:49:50r.david.murraysetmessageid: <1492361390.81.0.515305960715.issue30079@psf.upfronthosting.co.za>
2017-04-16 16:49:50r.david.murraylinkissue30079 messages
2017-04-16 16:49:50r.david.murraycreate