From: Victor Stinner Date: Sun, 9 Feb 2014 12:11:53 +0000 (+0100) Subject: Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. X-Git-Tag: v3.4.0rc1~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3633ce33012369ea79188aea20d795c3736ca5c6;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 570539fa5383..9b62d5b12f12 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -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):