Message5083

Author ssteiner
Recipients ssteiner
Date 2009-09-02.08:30:32
SpamBayes Score 0.003413774
Marked as misclassified No
Message-id <1251880233.05.0.567366356141.issue1453@psf.upfronthosting.co.za>
In-reply-to
Content
import subprocess
p = subprocess.Popen("dir", shell=True, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(handle, child_stderr) = (p.stdout, p.stderr)
print child_stderr.read()
History
Date User Action Args
2009-09-02 08:30:33ssteinersetmessageid: <1251880233.05.0.567366356141.issue1453@psf.upfronthosting.co.za>
2009-09-02 08:30:33ssteinersetrecipients: + ssteiner
2009-09-02 08:30:33ssteinerlinkissue1453 messages
2009-09-02 08:30:32ssteinercreate