(self)
| 479 | b"'abc\\n'") |
| 480 | |
| 481 | def test_builtin_input(self): |
| 482 | # Issue #11272: check that input() strips newlines ('\n' or '\r\n') |
| 483 | self.check_input( |
| 484 | "print(repr(input()))", |
| 485 | b"'abc'") |
| 486 | |
| 487 | def test_output_newline(self): |
| 488 | # Issue 13119 Newline for print() should be \r\n on Windows. |
nothing calls this directly
no test coverage detected