app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 12 Aug 2009 11:31:05 -0700
changeset 2762 02b464717ef5
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added intial GSoC logic modules. This will be filled with GSoC specific code once the transformation is complete.

from django.dispatch import Signal

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