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 ncoghlan
Recipients alex, cvrebert, eric.araujo, ncoghlan, pitrou
Date 2011-10-28.12:31:11
SpamBayes Score 0.0007690898
Marked as misclassified No
Message-id <1319805072.92.0.46382346926.issue13238@psf.upfronthosting.co.za>
In-reply-to
Content
Some examples:

>>> import shutil
>>> shutil.shell_call("du -hs {}", "../py*")
594M    ../py3k
579M    ../py3k_pristine
480M    ../python27
301M    ../python31
382M    ../python32
288K    ../python_swallowed_whole
0
>>> shutil.shell_call("du -hs {!q}", "../py*")
du: cannot access `../py*': No such file or directory
1
>>> shutil.shell_call("ls {}", "no file")
ls: cannot access no file: No such file or directory
2
>>> shutil.shell_call("ls {!u}", "no file")
ls: cannot access no: No such file or directory
ls: cannot access file: No such file or directory
2
History
Date User Action Args
2011-10-28 12:31:12ncoghlansetrecipients: + ncoghlan, pitrou, eric.araujo, alex, cvrebert
2011-10-28 12:31:12ncoghlansetmessageid: <1319805072.92.0.46382346926.issue13238@psf.upfronthosting.co.za>
2011-10-28 12:31:12ncoghlanlinkissue13238 messages
2011-10-28 12:31:12ncoghlancreate