From: Nick Coghlan Date: Fri, 7 Feb 2014 13:34:41 +0000 (+1000) Subject: Issue 20542: Temporarily skip failing test X-Git-Tag: v3.4.0rc1~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96252cd7249814b4bfeb915c39ae5e346a7fdc58;p=thirdparty%2FPython%2Fcpython.git Issue 20542: Temporarily skip failing test --- diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index dee1441f2159..8a6e0f91db0c 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -124,6 +124,8 @@ class ReadTest(MixInCheckStateHandling): "".join(codecs.iterdecode([bytes([c]) for c in encoded], self.encoding)) ) + # Temporary skip, see http://bugs.python.org/issue20542 + @unittest.skip def test_readline(self): def getreader(input): stream = io.BytesIO(input.encode(self.encoding))