app/django/dispatch/__init__.py
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 30 Jan 2009 11:46:08 +0000
changeset 1083 b8018d7a9f23
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Moved clean_club_app_link_id to cleaning. This method is now also used by the club create_form. Which means that you cannot create a new club with an already reserved link_id until the club application has been rejected. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

"""Multi-consumer multi-producer dispatching mechanism

Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1
See license.txt for original license.

Heavily modified for Django's purposes.
"""

from django.dispatch.dispatcher import Signal