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 bairam
Recipients astrand, atrusty, bairam, bethard, codecraig, davidschein, dserodio, grante
Date 2010-03-21.10:29:12
SpamBayes Score 0.036091574
Marked as misclassified No
Message-id <1269167354.84.0.802673064984.issue1124861@psf.upfronthosting.co.za>
In-reply-to
Content
I have tested this form in Python26 ,It works
>>> import subprocess
>>> p = subprocess.Popen("cmd.exe dir", stdout=subprocess.PIPE)
>>> p.communicate()
('Microsoft Windows XP [Version 5.1.2600]\r\n(C) Copyright 1985-2001 Microsoft Corp.\r\n\r\nC:\\Python26>', None)
History
Date User Action Args
2010-03-21 10:29:15bairamsetrecipients: + bairam, astrand, bethard, davidschein, codecraig, grante, dserodio, atrusty
2010-03-21 10:29:14bairamsetmessageid: <1269167354.84.0.802673064984.issue1124861@psf.upfronthosting.co.za>
2010-03-21 10:29:13bairamlinkissue1124861 messages
2010-03-21 10:29:12bairamcreate