app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 04 Mar 2009 23:11:33 +0000
changeset 1672 9b6cc71dd70c
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Only show key_fields in error message This caused a crash when GET, POST, and context were added to the django_args by the decorators. Patch by: Sverre Rabbelier

from django.dispatch import Signal

request_started = Signal()
request_finished = Signal()
got_request_exception = Signal(providing_args=["request"])