changeset 323 | ff1a9aa48cfd |
parent 54 | 03e267d67478 |
322:6641e941ef1e | 323:ff1a9aa48cfd |
---|---|
1 """Multi-consumer multi-producer dispatching mechanism |
1 """Multi-consumer multi-producer dispatching mechanism |
2 |
|
3 Originally based on pydispatch (BSD) http://pypi.python.org/pypi/PyDispatcher/2.0.1 |
|
4 See license.txt for original license. |
|
5 |
|
6 Heavily modified for Django's purposes. |
|
2 """ |
7 """ |
3 __version__ = "1.0.0" |
|
4 __author__ = "Patrick K. O'Brien" |
|
5 __license__ = "BSD-style, see license.txt for details" |
|
6 |
8 |
9 from django.dispatch.dispatcher import Signal |