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 2013年04月15日 12:40 by ncoghlan, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg186979 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2013年04月15日 12:40 | |
I'm getting a failure in test_builtin when running the following: ./python -m test -w test_genexps test_builtin ====================================================================== FAIL: test_input_tty_non_ascii (test.test_builtin.BuiltinTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/ncoghlan/devel/py3k/Lib/test/test_builtin.py", line 1176, in test_input_tty_non_ascii self.check_input_tty("prompté", b"quux\xe9", "utf-8") File "/home/ncoghlan/devel/py3k/Lib/test/test_builtin.py", line 1167, 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.BuiltinTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/ncoghlan/devel/py3k/Lib/test/test_builtin.py", line 1180, in test_input_tty_non_ascii_unicode_errors self.check_input_tty("prompté", b"quux\xe9", "ascii") File "/home/ncoghlan/devel/py3k/Lib/test/test_builtin.py", line 1167, in check_input_tty self.assertEqual(input_result, expected) AssertionError: 'quux' != 'quux\udce9' - quux + quux\udce9 ? + The problem persists after a make clean and rebuild. |
|||
| msg187001 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年04月15日 15:25 | |
Isn't this the same as #13886? |
|||
| msg191271 - (view) | Author: Brett Cannon (brett.cannon) * (Python committer) | Date: 2013年06月16日 15:18 | |
Issue #18230 is another test_builtin failure related to tty tests. |
|||
| msg197916 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2013年09月16日 16:10 | |
Yes. test_genexps uses doctests, doctest uses pdb, pdb imports readline. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:44 | admin | set | github: 61934 |
| 2013年09月16日 16:10:30 | serhiy.storchaka | set | status: open -> closed nosy: + serhiy.storchaka messages: + msg197916 superseder: test_builtin.PtyTests fail on non-ASCII characters if the readline module is loaded resolution: duplicate |
| 2013年06月16日 15:39:54 | Arfrever | set | nosy:
+ Arfrever |
| 2013年06月16日 15:18:12 | brett.cannon | set | nosy:
+ brett.cannon messages: + msg191271 |
| 2013年04月15日 15:25:53 | ezio.melotti | set | nosy:
+ ezio.melotti messages: + msg187001 |
| 2013年04月15日 12:40:13 | ncoghlan | create | |