Commit 3e1a9753 authored by Hanno Schlichting's avatar Hanno Schlichting

There's no string exceptions anymore

parent b112d234
...@@ -148,16 +148,15 @@ class Response: ...@@ -148,16 +148,15 @@ class Response:
absuri_match=None, tag_search=None): absuri_match=None, tag_search=None):
# Fetch our exception info. t is type, v is value and tb is the # Fetch our exception info. t is type, v is value and tb is the
# traceback object. # traceback object.
if type(info) is type(()) and len(info)==3: t,v,tb = info if isinstance(info, tuple) and len(info) == 3:
else: t,v,tb = sys.exc_info() t, v, tb = info
else:
t, v, tb = sys.exc_info()
# Don't mask 404 respnses, as some XML-RPC libraries rely on the HTTP # Don't mask 404 respnses, as some XML-RPC libraries rely on the HTTP
# mechanisms for detecting when authentication is required. Fixes Zope # mechanisms for detecting when authentication is required. Fixes Zope
# Collector issue 525. # Collector issue 525.
if t == 'Unauthorized' or ( if issubclass(t, Unauthorized):
isinstance(t, types.ClassType) and issubclass(t, Unauthorized)
):
return self._real.exception(fatal=fatal, info=info) return self._real.exception(fatal=fatal, info=info)
# Create an appropriate Fault object. Containing error information # Create an appropriate Fault object. Containing error information
...@@ -175,7 +174,6 @@ class Response: ...@@ -175,7 +174,6 @@ class Response:
value = '\n' + ''.join(format_exception(t, vstr, tb)) value = '\n' + ''.join(format_exception(t, vstr, tb))
else: else:
value = '%s - %s' % (t, vstr) value = '%s - %s' % (t, vstr)
if isinstance(v, Fault): if isinstance(v, Fault):
f=v f=v
elif isinstance(v, Exception): elif isinstance(v, Exception):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment