(self)
| 2711 | self.check_input_tty("prompté", b"quux\xe9", "ascii") |
| 2712 | |
| 2713 | def test_input_tty_null_in_prompt(self): |
| 2714 | self.check_input_tty("prompt\0", b"", |
| 2715 | expected='ValueError: input: prompt string cannot contain ' |
| 2716 | 'null characters') |
| 2717 | |
| 2718 | def test_input_tty_nonencodable_prompt(self): |
| 2719 | self.check_input_tty("prompté", b"quux", "ascii", stdout_errors='strict', |
nothing calls this directly
no test coverage detected