From 8414fcf16b9cfa8d989db913f0961fc4ce18c71b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ehrlich?= Date: Sat, 15 Nov 2014 16:03:20 +0100 Subject: [PATCH] Fixes #23643 -- Added chained exception details to debug view. --- django/views/debug.py | 55 ++++++++++++++++++++++-- docs/releases/1.9.txt | 2 + setup.cfg | 2 +- tests/view_tests/tests/py3_test_debug.py | 42 ++++++++++++++++++ tests/view_tests/tests/test_debug.py | 3 ++ 5 files changed, 100 insertions(+), 4 deletions(-) create mode 100644 tests/view_tests/tests/py3_test_debug.py diff --git a/django/views/debug.py b/django/views/debug.py index d0235f4bd4..c2a290573a 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -479,8 +479,29 @@ class ExceptionReporter(object): return lower_bound, pre_context, context_line, post_context def get_traceback_frames(self): + def explicit_or_implicit_cause(exc_value): + explicit = getattr(exc_value, '__cause__', None) + implicit = getattr(exc_value, '__context__', None) + return explicit or implicit + + # Get the exception and all its causes + exceptions = [] + exc_value = self.exc_value + while exc_value: + exceptions.append(exc_value) + exc_value = explicit_or_implicit_cause(exc_value) + frames = [] - tb = self.tb + # No exceptions were supplied to ExceptionReporter + if not exceptions: + return frames + + # In case there's just one exception (always in Python 2, + # sometimes in Python 3), take the traceback from self.tb (Python 2 + # doesn't have a __traceback__ attribute on Exception) + exc_value = exceptions.pop() + tb = self.tb if not exceptions else exc_value.__traceback__ + while tb is not None: # Support for __traceback_hide__ which is used by a few libraries # to hide internal frames. @@ -497,6 +518,8 @@ class ExceptionReporter(object): ) if pre_context_lineno is not None: frames.append({ + 'exc_cause': explicit_or_implicit_cause(exc_value), + 'exc_cause_explicit': getattr(exc_value, '__cause__', True), 'tb': tb, 'type': 'django' if module_name.startswith('django.') else 'user', 'filename': filename, @@ -509,7 +532,14 @@ class ExceptionReporter(object): 'post_context': post_context, 'pre_context_lineno': pre_context_lineno + 1, }) - tb = tb.tb_next + + # If the traceback for current exception is consumed, try the + # other exception. + if not tb.tb_next and exceptions: + exc_value = exceptions.pop() + tb = exc_value.__traceback__ + else: + tb = tb.tb_next return frames @@ -838,6 +868,15 @@ TECHNICAL_500_TEMPLATE = ("""