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 xdegaye
Recipients martin.panter, xdegaye
Date 2016-06-15.09:29:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465982957.82.0.785145157201.issue27325@psf.upfronthosting.co.za>
In-reply-to
Content
Not sure if this is relevant, I am using:
    readline 6.3
    ncurses 6.0

The test runs fine when run alone, with the 8991930 random seed:

$ ./python -bb -E -Wd -m test -r -w -uall --randseed 8991930
======================================================================                      [3/1338]
FAIL: test_input_tty_non_ascii (test.test_builtin.PtyTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/xavier/src/python/default/Lib/test/test_builtin.py", line 1583, in test_input_tty_non_
ascii
    self.check_input_tty("prompté", b"quux\xe9", "utf-8")
  File "/home/xavier/src/python/default/Lib/test/test_builtin.py", line 1574, in check_input_tty
    self.assertEqual(input_result, expected)
AssertionError: 'quux' != 'quux\udce9'
- quux
+ quux\udce9
?     +


======================================================================
FAIL: test_input_tty_non_ascii_unicode_errors (test.test_builtin.PtyTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/xavier/src/python/default/Lib/test/test_builtin.py", line 1587, in test_input_tty_non_
ascii_unicode_errors
    self.check_input_tty("prompté", b"quux\xe9", "ascii")
  File "/home/xavier/src/python/default/Lib/test/test_builtin.py", line 1574, in check_input_tty
    self.assertEqual(input_result, expected)
AssertionError: 'quux' != 'quux\udce9'
- quux
+ quux\udce9
?     +
History
Date User Action Args
2016-06-15 09:29:17xdegayesetrecipients: + xdegaye, martin.panter
2016-06-15 09:29:17xdegayesetmessageid: <1465982957.82.0.785145157201.issue27325@psf.upfronthosting.co.za>
2016-06-15 09:29:17xdegayelinkissue27325 messages
2016-06-15 09:29:16xdegayecreate