We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7165e8 commit 8ec024aCopy full SHA for 8ec024a
Lib/test/test_cmd_line.py
@@ -459,6 +459,8 @@ def test_stdin_readline(self):
459
"import sys; print(repr(sys.stdin.readline()))",
460
b"'abc\\n'")
461
462
+ # TODO: RUSTPYTHON
463
+ @unittest.skipIf(sys.platform.startswith('win'), "TODO: RUSTPYTHON windows has \n troubles")
464
def test_builtin_input(self):
465
# Issue #11272: check that input() strips newlines ('\n' or '\r\n')
466
self.check_input(
0 commit comments