(self)
| 2697 | yield |
| 2698 | |
| 2699 | def test_input_tty(self): |
| 2700 | # Test input() functionality when wired to a tty |
| 2701 | self.check_input_tty("prompt", b"quux") |
| 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): |
nothing calls this directly
no test coverage detected