app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 14 Oct 2008 21:33:57 +0000
changeset 328 275a47dd0ac8
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add missing blank lines, clean up the doc string and remove white spaces at the end of the lines in reflistprop. Patch by: Pawel Solyga Review by: to-be-reviewed

from django.dispatch import Signal

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