[Python-checkins] cpython: Issue #20571: skip test_readline() of test_codecs for Windows code page 65001.

victor.stinner python-checkins at python.org
Sun Feb 9 13:14:10 CET 2014


http://hg.python.org/cpython/rev/4f6499fc2f09
changeset:   89087:4f6499fc2f09
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sun Feb 09 13:11:53 2014 +0100
summary:
  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.

files:
  Lib/test/test_codecs.py |  3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
--- a/Lib/test/test_codecs.py
+++ b/Lib/test/test_codecs.py
@@ -890,6 +890,9 @@
                          "\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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list