(self)
| 2747 | yield |
| 2748 | |
| 2749 | def test_input_tty(self): |
| 2750 | # Test input() functionality when wired to a tty |
| 2751 | self.check_input_tty("prompt", b"quux") |
| 2752 | |
| 2753 | def test_input_tty_non_ascii(self): |
| 2754 | # Check stdin/stdout encoding is used when invoking PyOS_Readline() |
nothing calls this directly
no test coverage detected