app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 06 Apr 2009 23:46:46 +0000
changeset 2108 286aa6528e84
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Properly handle exports when there are multiple lists If there are multiple lists whose index does not match their position in the contents, things weren't handled properly. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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