diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-09 12:11:53 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-09 12:11:53 (GMT) |
commit | 1be39e515444a21b1168862368970ed8bd4a2d64 (patch) | |
tree | 3ace515017c76f80b9fac55f1f31dce3f31a9499 /Lib | |
parent | ed7d0c4ff6fef4002acf7693ba04af6d803783ba (diff) | |
download | cpython-1be39e515444a21b1168862368970ed8bd4a2d64.zip cpython-1be39e515444a21b1168862368970ed8bd4a2d64.tar.gz cpython-1be39e515444a21b1168862368970ed8bd4a2d64.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | 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 index cb618ec..1a199f7 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -845,6 +845,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): |