summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-02-23 08:46:00 +0100
committerGeorg Brandl <georg@python.org>2014-02-23 08:46:00 +0100
commita28ae194e4311685ab0c12ae27aa04a79ed73aa2 (patch)
tree9a3d946d49fe47a211a741b4d1c7d9420b80c384
parent84700c1119284824bf62af9324b57b3868b24dd7 (diff)
parent3d4f53b6ad175c4cd2bac23a4b46b887ac505aa9 (diff)
downloadcpython-a28ae194e4311685ab0c12ae27aa04a79ed73aa2.tar.gz
-rw-r--r--Lib/test/test_codecs.py3
-rw-r--r--Lib/test/test_robotparser.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py
index cb618ece8c..1a199f7175 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):
diff --git a/Lib/test/test_robotparser.py b/Lib/test/test_robotparser.py
index d1dfd9eeec..ebc819c4f8 100644
--- a/Lib/test/test_robotparser.py
+++ b/Lib/test/test_robotparser.py
@@ -275,6 +275,7 @@ class NetworkTestCase(unittest.TestCase):
self.skipTest('%s is unavailable' % url)
self.assertEqual(parser.can_fetch("*", robots_url), False)
+ @unittest.skip('does not handle the gzip encoding delivered by pydotorg')
def testPythonOrg(self):
support.requires('network')
with support.transient_internet('www.python.org'):