summaryrefslogtreecommitdiffstats
path: root/webapp/django/dispatch/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/dispatch/__init__.py')
-rw-r--r--webapp/django/dispatch/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/webapp/django/dispatch/__init__.py b/webapp/django/dispatch/__init__.py
new file mode 100644
index 0000000000..0798acc7db
--- /dev/null
+++ b/webapp/django/dispatch/__init__.py
@@ -0,0 +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.
+"""
+
+from django.dispatch.dispatcher import Signal \ No newline at end of file