app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 06 Dec 2008 14:24:50 +0000
changeset 681 48983ecf4665
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Cleanups in group and program The missing super call in group prevented the scope from being set as it should be. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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