Kaydet (Commit) 3633ce33 authored tarafından Victor Stinner's avatar Victor Stinner

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.
üst dfe98a10
......@@ -890,6 +890,9 @@ class CP65001Test(ReadTest, unittest.TestCase):
"\U00010fff\uD800")
self.assertTrue(codecs.lookup_error("surrogatepass"))
def test_readline(self):
self.skipTest("issue #20571: code page 65001 codec does not "
"support partial decoder yet")
class UTF7Test(ReadTest, unittest.TestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment