app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 30 Nov 2008 16:46:32 +0000
changeset 628 6685c7b56d50
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add module docstring and license for soc, soc.models, soc.views.helper.templatetags. Patch by: Pawel Solyga

from django.dispatch import Signal

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