diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-26 12:36:30 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-26 12:36:30 (GMT) |
commit | 2dab865ff177f167886396bb162285f6dd24e668 (patch) | |
tree | dfd0da2fe009615cdf9d6db68f50f94399ae577a /Lib/test/test_multibytecodec_support.py | |
parent | 0306894fb147ad960f072c67822c10f8bdfd094a (diff) | |
download | cpython-2dab865ff177f167886396bb162285f6dd24e668.zip cpython-2dab865ff177f167886396bb162285f6dd24e668.tar.gz cpython-2dab865ff177f167886396bb162285f6dd24e668.tar.bz2 |
When open_urlresource() fails, HTTPException is another possible error
Diffstat (limited to 'Lib/test/test_multibytecodec_support.py')
-rw-r--r-- | Lib/test/test_multibytecodec_support.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_multibytecodec_support.py b/Lib/test/test_multibytecodec_support.py index cf7f288..3afe3a9 100644 --- a/Lib/test/test_multibytecodec_support.py +++ b/Lib/test/test_multibytecodec_support.py @@ -6,6 +6,7 @@ import sys, codecs import unittest, re +from httplib import HTTPException from test import test_support from StringIO import StringIO @@ -268,7 +269,7 @@ class TestBase_Mapping(unittest.TestCase): unittest.TestCase.__init__(self, *args, **kw) try: self.open_mapping_file() # test it to report the error early - except IOError: + except (IOError, HTTPException): self.skipTest("Could not retrieve "+self.mapfileurl) def open_mapping_file(self): |