From e55eb7ce8a39daa8ba77c1ce41dfd8132a0ff1ba Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 3 Feb 2021 20:46:43 -0500 Subject: [PATCH] Explain test_read_text_given_encoding skip --- Lib/test/test_importlib/test_read.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_read.py b/Lib/test/test_importlib/test_read.py index f2cedb991..25dd4e2e9 100644 --- a/Lib/test/test_importlib/test_read.py +++ b/Lib/test/test_importlib/test_read.py @@ -24,7 +24,7 @@ class ReadTests: result = resources.read_text(self.data, 'utf-8.file') 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_read_text_given_encoding(self): result = resources.read_text( self.data, 'utf-16.file', encoding='utf-16')