From cde7fa215aa8a8338df6c3a9f4cf07da90d9c90e Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 3 Feb 2021 19:59:13 -0500 Subject: [PATCH] Explain test_open_text_given_encoding 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 1cf8e4e3b..5e45ba01b 100644 --- a/Lib/test/test_importlib/test_open.py +++ b/Lib/test/test_importlib/test_open.py @@ -28,7 +28,7 @@ class OpenTests: result = fp.read() self.assertEqual(result, 'Hello, UTF-8 world!\n') - @unittest.skip("TODO: RUSTPYTHON") + @unittest.skip("TODO: RUSTPYTHON, UnicodeDecodeError: cannot decode byte at index: 0") def test_open_text_given_encoding(self): with resources.open_text( self.data, 'utf-16.file', 'utf-16', 'strict') as fp: