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 martin.panter
Recipients Arfrever, amaury.forgeotdarc, berwin22, chris.jerdonek, eric.araujo, eryksun, mark, martin.panter, mightyiam, ncoghlan, pitrou, r.david.murray, segfaulthunter, srid, steve.dower, vstinner
Date 2016-09-07.01:51:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473213079.6.0.910188142523.issue6135@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe good to adjust the other mentions of universal_newlines, e.g. for check_output(). The Posix version of the multiple-pipe _communicate() method probably needs adjusting too. Test case:

>>> check_output(("true",), encoding="ascii", input="")  # Should be text
b''
>>> check_output(("true",), encoding="ascii")  # Correct result
''
History
Date User Action Args
2016-09-07 01:51:19martin.pantersetrecipients: + martin.panter, amaury.forgeotdarc, ncoghlan, pitrou, vstinner, mark, eric.araujo, segfaulthunter, Arfrever, r.david.murray, srid, mightyiam, chris.jerdonek, eryksun, steve.dower, berwin22
2016-09-07 01:51:19martin.pantersetmessageid: <1473213079.6.0.910188142523.issue6135@psf.upfronthosting.co.za>
2016-09-07 01:51:19martin.panterlinkissue6135 messages
2016-09-07 01:51:19martin.pantercreate