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 Keita Kita, berker.peksag, eryksun, martin.panter, pitrou, serhiy.storchaka, taleinat
Date 2015-10-10.01:39:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444441188.46.0.421765965143.issue24402@psf.upfronthosting.co.za>
In-reply-to
Content
Okay I plan to commit a modified version where I moved the input() test methods that use pseudo terminals to a new PtyTests class. The test_input() method stays in the original class, because it shares a helper method with other tests.

I am resisting dropping that decode() step, because it makes any error message from the forked child hard to read:

AssertionError: 256 != 0 : b'quux\r\nTraceback (most recent call last):\r\n  File "/media/disk/home/proj/python/cpython/Lib/test/test_builtin.py", line 1593, in test_input_no_stdout_fileno\r\n    input("prompt")\r\nTypeError: bad argument type for built-in operation\r\n'
History
Date User Action Args
2015-10-10 01:39:48martin.pantersetrecipients: + martin.panter, pitrou, taleinat, berker.peksag, serhiy.storchaka, eryksun, Keita Kita
2015-10-10 01:39:48martin.pantersetmessageid: <1444441188.46.0.421765965143.issue24402@psf.upfronthosting.co.za>
2015-10-10 01:39:48martin.panterlinkissue24402 messages
2015-10-10 01:39:46martin.pantercreate