app/django/core/signals.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 09 Mar 2009 00:38:43 +0000
changeset 1765 2c7137e62a01
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add missing blank lines in test_utils module. 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"])