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.
Created on 2016年12月05日 07:08 by ncoghlan, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg282389 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2016年12月05日 07:08 | |
test_builtin currently fails for me when hunting refleaks (Fedora 25): $ ./python -m test -R 3:3 -v test_builtin [snip] ====================================================================== FAIL: test_input_tty_non_ascii (test.test_builtin.PtyTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/ncoghlan/devel/py36/Lib/test/test_builtin.py", line 1592, in test_input_tty_non_ascii self.check_input_tty("prompté", b"quux\xe9", "utf-8") File "/home/ncoghlan/devel/py36/Lib/test/test_builtin.py", line 1583, 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/ncoghlan/devel/py36/Lib/test/test_builtin.py", line 1596, in test_input_tty_non_ascii_unicode_errors self.check_input_tty("prompté", b"quux\xe9", "ascii") File "/home/ncoghlan/devel/py36/Lib/test/test_builtin.py", line 1583, in check_input_tty self.assertEqual(input_result, expected) AssertionError: 'quux' != 'quux\udce9' - quux + quux\udce9 ? + ---------------------------------------------------------------------- Ran 78 tests in 0.066s FAILED (failures=2) |
|||
| msg282392 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2016年12月05日 07:25 | |
Ned, I'm not sure if this should be a release blocker or not. Superficially, it looks like it's just a test bug arising from running the test multiple times in the same process, but I unfortunately don't have time to investigate further today. |
|||
| msg282395 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2016年12月05日 07:35 | |
This is a duplicate of issue13886. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:40 | admin | set | github: 73058 |
| 2016年12月05日 19:41:14 | ned.deily | set | status: open -> closed assignee: ned.deily -> stage: needs patch -> resolved |
| 2016年12月05日 07:35:23 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka messages: + msg282395 resolution: duplicate superseder: test_builtin.PtyTests fail on non-ASCII characters if the readline module is loaded |
| 2016年12月05日 07:25:08 | ncoghlan | set | assignee: ned.deily messages: + msg282392 |
| 2016年12月05日 07:08:43 | ncoghlan | create | |