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 ocean-city
Recipients ocean-city
Date 2010-09-23.18:23:20
SpamBayes Score 0.009523385
Marked as misclassified No
Message-id <1285266202.04.0.776571234765.issue9929@psf.upfronthosting.co.za>
In-reply-to
Content
Interestingly, following code also hangs. Maybe I'm
misunderstanding the meaning of *bufsize*....

from subprocess import *
import sys

p = Popen([sys.executable, "-c", "import sys; print(sys.stdin.read(1))"], stdin=PIPE)
p.stdin.write(b'xx') # size 2
p.wait()
History
Date User Action Args
2010-09-23 18:23:22ocean-citysetrecipients: + ocean-city
2010-09-23 18:23:22ocean-citysetmessageid: <1285266202.04.0.776571234765.issue9929@psf.upfronthosting.co.za>
2010-09-23 18:23:20ocean-citylinkissue9929 messages
2010-09-23 18:23:20ocean-citycreate