mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
b7f60045fe
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13773 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
279 B
Python
9 lines
279 B
Python
"""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, receiver |