[Python-checkins] cpython: Issue 20542: Temporarily skip failing test

nick.coghlan python-checkins at python.org
Fri Feb 7 14:35:03 CET 2014


http://hg.python.org/cpython/rev/2e7c46718b83
changeset:   89011:2e7c46718b83
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Fri Feb 07 23:34:41 2014 +1000
summary:
  Issue 20542: Temporarily skip failing test

files:
  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
--- a/Lib/test/test_codecs.py
+++ b/Lib/test/test_codecs.py
@@ -124,6 +124,8 @@
             "".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))

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list