app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 06 Dec 2008 12:12:58 +0000
changeset 676 c6433532ddff
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Swap the order of request key fields This will make it easier to remove scope_path as explicit key field at some point by having it as inplicit key field for all entities. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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