app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 01 Feb 2009 13:24:00 +0000
changeset 1140 a8eaea0b268d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Style fixes in soc.logic.models modules (basically removing of extra whitespaces). Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.dispatch import Signal

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