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

georg.brandl python-checkins at python.org
Sun Feb 23 08:34:25 CET 2014


http://hg.python.org/cpython/rev/d8f48717b74e
changeset:   89333:d8f48717b74e
branch:      3.3
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
@@ -845,6 +845,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