Skip to content

Commit 8ec024a

Browse files
committed
fix windows
1 parent e7165e8 commit 8ec024a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_cmd_line.py

+2
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,8 @@ def test_stdin_readline(self):
459459
"import sys; print(repr(sys.stdin.readline()))",
460460
b"'abc\\n'")
461461

462+
# TODO: RUSTPYTHON
463+
@unittest.skipIf(sys.platform.startswith('win'), "TODO: RUSTPYTHON windows has \n troubles")
462464
def test_builtin_input(self):
463465
# Issue #11272: check that input() strips newlines ('\n' or '\r\n')
464466
self.check_input(

0 commit comments

Comments
 (0)