From 26513603a95fdcb9a22ca285e4383aa6ebfc0ab2 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 3 Feb 2021 19:59:55 -0500 Subject: [PATCH] Explain test_open_text_with_errors skip --- Lib/test/test_importlib/test_open.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_open.py b/Lib/test/test_importlib/test_open.py index 5e45ba01b..d108e9993 100644 --- a/Lib/test/test_importlib/test_open.py +++ b/Lib/test/test_importlib/test_open.py @@ -35,7 +35,7 @@ class OpenTests: result = fp.read() self.assertEqual(result, 'Hello, UTF-16 world!\n') - @unittest.skip("TODO: RUSTPYTHON") + @unittest.skip("TODO: RUSTPYTHON, UnicodeDecodeError: cannot decode byte at index: 0") def test_open_text_with_errors(self): # Raises UnicodeError without the 'errors' argument. with resources.open_text(