summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Gregorio <jcgregorio@google.com>2012-11-12 13:53:06 -0500
committerJoe Gregorio <jcgregorio@google.com>2012-11-12 13:53:06 -0500
commitfe1ab3438ec90b2bfce779cfa868f9fa6cb116a7 (patch)
tree2f3e83667efb2c8fed86549f0a1be5890ff2d61d
parent20846977d470fc623dda0a08712954dbe4a34c7d (diff)
downloadhttplib2-fe1ab3438ec90b2bfce779cfa868f9fa6cb116a7.tar.gz
Stop swallowing App Engine specific errors.
Fixes issue 230. Fixes issue 231.
-rw-r--r--python2/httplib2/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 2d260e3..69795b8 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -1120,8 +1120,6 @@ try:
# Make sure the exceptions raised match the exceptions expected.
except InvalidURLError:
raise socket.gaierror('')
- except (DownloadError, ResponseTooLargeError, SSLCertificateError):
- raise httplib.HTTPException()
def getresponse(self):
if self.response: