summaryrefslogtreecommitdiff
path: root/Lib/test/test_codecs.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-02-07 23:34:41 +1000
committerNick Coghlan <ncoghlan@gmail.com>2014-02-07 23:34:41 +1000
commit78ffa9ed3814b4a172032de42f3e9a8ca37a63b4 (patch)
tree43b6d1244212846f3a76b9756b870c0462be289c /Lib/test/test_codecs.py
parentf270b6f73f65f3b30f7d8dbd6d080748c1846602 (diff)
downloadcpython-78ffa9ed3814b4a172032de42f3e9a8ca37a63b4.tar.gz
Issue 20542: Temporarily skip failing test
Diffstat (limited to 'Lib/test/test_codecs.py')
-rw-r--r--Lib/test/test_codecs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
index dee1441f21..8a6e0f91db 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))