Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1be39e5

Browse files
committed
Issue #20571: skip test_readline() of test_codecs for Windows code page 65001.
The decoder does not support partial decoding yet for this code page.
1 parent ed7d0c4 commit 1be39e5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Lib/test/test_codecs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,9 @@ def test_surrogatepass_handler(self):
845845
"\U00010fff\uD800")
846846
self.assertTrue(codecs.lookup_error("surrogatepass"))
847847

848+
def test_readline(self):
849+
self.skipTest("issue #20571: code page 65001 codec does not "
850+
"support partial decoder yet")
848851

849852

850853
class UTF7Test(ReadTest, unittest.TestCase):

0 commit comments

Comments
 (0)