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 vstinner
Recipients vstinner
Date 2010-05-21.12:37:54
SpamBayes Score 0.00022356823
Marked as misclassified No
Message-id <1274445476.8.0.294880351172.issue8780@psf.upfronthosting.co.za>
In-reply-to
Content
The following code works on 2.6, 2.7 (trunk), 3.1, but not on py3k.

import subprocess, sys
subprocess.call([sys.executable, '-c', 'print("Hello World!")'])

On py3k, sys.stdout and sys.stderr are equal to... None.

I hope that it's a problem with my setup.
History
Date User Action Args
2010-05-21 12:37:57vstinnersetrecipients: + vstinner
2010-05-21 12:37:56vstinnersetmessageid: <1274445476.8.0.294880351172.issue8780@psf.upfronthosting.co.za>
2010-05-21 12:37:55vstinnerlinkissue8780 messages
2010-05-21 12:37:54vstinnercreate