diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-07 13:34:41 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-07 13:34:41 (GMT) |
commit | 96252cd7249814b4bfeb915c39ae5e346a7fdc58 (patch) | |
tree | 83c5f89797c94b33f591fc89094bd063cfd9d178 | |
parent | d49fa5eb11caa677195fa9a4086552e4533f3dff (diff) | |
download | cpython-96252cd7249814b4bfeb915c39ae5e346a7fdc58.zip cpython-96252cd7249814b4bfeb915c39ae5e346a7fdc58.tar.gz cpython-96252cd7249814b4bfeb915c39ae5e346a7fdc58.tar.bz2 |
Issue 20542: Temporarily skip failing test
-rw-r--r-- | Lib/test/test_codecs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index dee1441..8a6e0f9 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)) |