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, brett.cannon, doko, ezio.melotti, martin.panter, nadeem.vawda, petri.lehtinen, python-dev, serhiy.storchaka, vstinner
Date 2016-12-06.03:30:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480995060.81.0.0562065076409.issue13886@psf.upfronthosting.co.za>
In-reply-to
Content
input-readline.v2.patch sets stderr=DEVNULL so that the prompt does not come out in the test log.

A disadvantage of this is that if there is a failure, any error messages, stack trace, etc is also lost. To fix this properly, we would probably have to capture stderr using a generalized communicate() loop, like I have done at the bottom of <https://hg.python.org/cpython/annotate/v3.6.0b4/Lib/test/test_readline.py#l231> (see also Issue 1260171).
History
Date User Action Args
2016-12-06 03:31:00martin.pantersetrecipients: + martin.panter, brett.cannon, doko, vstinner, nadeem.vawda, ezio.melotti, Arfrever, python-dev, petri.lehtinen, serhiy.storchaka
2016-12-06 03:31:00martin.pantersetmessageid: <1480995060.81.0.0562065076409.issue13886@psf.upfronthosting.co.za>
2016-12-06 03:31:00martin.panterlinkissue13886 messages
2016-12-06 03:30:59martin.pantercreate