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 chris.jerdonek
Recipients asvetlov, chris.jerdonek, gregory.p.smith, pitrou, r.david.murray
Date 2012-08-15.19:38:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345059512.74.0.62130558044.issue12623@psf.upfronthosting.co.za>
In-reply-to
Content
Andrew, I'm not sure if this is the issue, but it seems like the only tests in which input is passed to communicate() with universal newlines is when stdin is the only PIPE, i.e.:

    def test_universal_newlines_communicate_stdin(self):
        # universal newlines through communicate(), with only stdin

IIRC, the select() and poll() implementations are only called when at least two of the streams are PIPE (like in the new input_none test I added recently).  Have you tried passing input to communicate() with at least two pipes (e.g. stdin and stdout)?
History
Date User Action Args
2012-08-15 19:38:32chris.jerdoneksetrecipients: + chris.jerdonek, gregory.p.smith, pitrou, r.david.murray, asvetlov
2012-08-15 19:38:32chris.jerdoneksetmessageid: <1345059512.74.0.62130558044.issue12623@psf.upfronthosting.co.za>
2012-08-15 19:38:32chris.jerdoneklinkissue12623 messages
2012-08-15 19:38:31chris.jerdonekcreate