app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 29 Jan 2009 23:07:04 +0000
changeset 1075 4fd9b11fba56
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Cleaned up overly enthousiastic comments From the styleguide: On the other hand, never describe the code. Assume the person reading the code knows Python (though not what you're trying to do) better than you do. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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