summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-05-30 05:17:42 -0700
committerTim Graham <timograham@gmail.com>2016-05-30 08:17:42 -0400
commit995d09ead492a1c3d71d781c7846f622b3f71186 (patch)
tree3cde7ed638c08b155a7e80fe897267b77b141a85 /django
parent1b00ed088073ffd268af15d25246d2565253536d (diff)
Fixed #13080 -- Corrected accepted values of sender parameter in Signal.connect() docstring.
Diffstat (limited to 'django')
-rw-r--r--django/dispatch/dispatcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py
index 052c72c777..30f339a47c 100644
--- a/django/dispatch/dispatcher.py
+++ b/django/dispatch/dispatcher.py
@@ -74,7 +74,7 @@ class Signal(object):
sender
The sender to which the receiver should respond. Must either be
- of type Signal, or None to receive events from any sender.
+ a Python object, or None to receive events from any sender.
weak
Whether to use weak references to the receiver. By default, the