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 pitrou
Recipients gangesmaster, gregory.p.smith, pitrou
Date 2012-05-06.11:55:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336305340.06.0.94955415497.issue14737@psf.upfronthosting.co.za>
In-reply-to
Content
Works with 3.2.2:

Python 3.2.2+ (3.2:9ef20fbd340f, Oct 15 2011, 21:22:07) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from subprocess import Popen, PIPE
>>> p=Popen(["/bin/sh"], stdin=PIPE, stderr=PIPE, stdout=PIPE)
>>> p.stdin.write(b"echo hello\n")
11
>>> p.stdout.readline()
b'hello\n'


Try calling p.stdin.flush() perhaps?
History
Date User Action Args
2012-05-06 11:55:40pitrousetrecipients: + pitrou, gregory.p.smith, gangesmaster
2012-05-06 11:55:40pitrousetmessageid: <1336305340.06.0.94955415497.issue14737@psf.upfronthosting.co.za>
2012-05-06 11:55:39pitroulinkissue14737 messages
2012-05-06 11:55:39pitroucreate