Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Mark tests failing only in Windows
  • Loading branch information
moreal committed Jan 30, 2026
commit 0f66c19cdfa115b5b84b54a9eaa1122c5b10f28e
3 changes: 2 additions & 1 deletion Lib/test/test_codecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3592,7 +3592,7 @@ def test_cp1252(self):
(b'\xff', 'strict', '\xff'),
))

@unittest.expectedFailure # TODO: RUSTPYTHON
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
def test_cp708(self):
self.check_encode(708, (
('abc2%', 'strict', b'abc2%'),
Expand Down Expand Up @@ -3622,6 +3622,7 @@ def test_cp708(self):
(b'[\xa0]', 'surrogatepass', None),
))

@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
def test_cp20106(self):
self.check_encode(20106, (
('abc', 'strict', b'abc'),
Expand Down