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:15:39
SpamBayes Score 5.406552e-06
Marked as misclassified No
Message-id <1285265742.42.0.656694330002.issue9929@psf.upfronthosting.co.za>
In-reply-to
Content
Following script hangs on Python3.x.

from subprocess import *
import sys

p = Popen([sys.executable, "-c", "import sys; print(sys.stdin.read(1))"], stdin=PIPE)
p.stdin.write(b'x')
p.wait()

This is because unbuffered functionality of
subprocess.Popen is disabled. Is this still needed?

I confirmed test_subprocess passes with the attached
patch.
History
Date User Action Args
2010-09-23 18:15:42ocean-citysetrecipients: + ocean-city
2010-09-23 18:15:42ocean-citysetmessageid: <1285265742.42.0.656694330002.issue9929@psf.upfronthosting.co.za>
2010-09-23 18:15:40ocean-citylinkissue9929 messages
2010-09-23 18:15:39ocean-citycreate