(self)
| 2722 | "range(128)") |
| 2723 | |
| 2724 | def test_input_tty_nondecodable_input(self): |
| 2725 | self.check_input_tty("prompt", b"quux\xe9", "ascii", stdin_errors='strict', |
| 2726 | expected="UnicodeDecodeError: 'ascii' codec can't decode " |
| 2727 | "byte 0xe9 in position 4: ordinal not in " |
| 2728 | "range(128)") |
| 2729 | |
| 2730 | @unittest.skip("TODO: RUSTPYTHON; FAILURE, WORKER BUG") |
| 2731 | @unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: got 0 lines in pipe but expected 2, child output was: quux |
nothing calls this directly
no test coverage detected