mirror of
https://github.com/django/django.git
synced 2025-03-13 02:40:47 +00:00
Though some attempts and backwards-compatibility were made, speed trumped compatibility. Thus, as usual, check BackwardsIncompatibleChanges for the complete list of backwards-incompatible changes. Thanks to Jeremy Dunck and Keith Busell for the bulk of the work; some ideas from Brian Herring's previous work (refs #4561) were incorporated. Documentation is, sigh, still forthcoming. Fixes #6814 and #3951 (with the new dispatch_uid argument to connect). git-svn-id: http://code.djangoproject.com/svn/django/trunk@8223 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
269 B
Python
9 lines
269 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 |