1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #16245 -- Included traceback in send_robust()'s response

Exceptions from the (receiver, exception) tuples returned by
``send_robust()`` now have always their traceback attached as their
``__traceback__`` argument.
This commit is contained in:
Unai Zalakain
2013-10-30 12:11:04 +01:00
committed by Tim Graham
parent 79e9da3d1e
commit ebb0279f4a
4 changed files with 15 additions and 2 deletions

View File

@@ -153,7 +153,9 @@ Models
Signals
^^^^^^^
* ...
* Exceptions from the ``(receiver, exception)`` tuples returned by
:meth:`Signal.send_robust() <django.dispatch.Signal.send_robust>` now have
their traceback attached as a ``__traceback__`` attribute.
Templates
^^^^^^^^^