app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 01 Feb 2009 23:36:50 +0000
changeset 1169 c0294f3c28db
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Set the right field type in user_self to overcome confusion. Also reverted a template change. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.dispatch import Signal

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