(self)
| 2702 | |
| 2703 | @unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: got 0 lines in pipe but expected 2, child output was: quux |
| 2704 | def test_input_tty_non_ascii(self): |
| 2705 | # Check stdin/stdout encoding is used when invoking PyOS_Readline() |
| 2706 | self.check_input_tty("prompté", b"quux\xc3\xa9", "utf-8") |
| 2707 | |
| 2708 | @unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: got 0 lines in pipe but expected 2, child output was: quux |
| 2709 | def test_input_tty_non_ascii_unicode_errors(self): |
nothing calls this directly
no test coverage detected