app/django/dispatch/__init__.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
--- a/app/django/dispatch/__init__.py	Tue Oct 14 12:36:55 2008 +0000
+++ b/app/django/dispatch/__init__.py	Tue Oct 14 16:00:59 2008 +0000
@@ -1,6 +1,9 @@
 """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.
 """
-__version__ = "1.0.0"
-__author__ = "Patrick K. O'Brien"
-__license__ = "BSD-style, see license.txt for details"
 
+from django.dispatch.dispatcher import Signal
\ No newline at end of file