1
0
mirror of https://github.com/django/django.git synced 2025-01-10 10:26:34 +00:00

[1.10.x] Fixed #13080 -- Corrected accepted values of sender parameter in Signal.connect() docstring.

Backport of 995d09ead4 from master
This commit is contained in:
Berker Peksag 2016-05-30 05:17:42 -07:00 committed by Tim Graham
parent af8ac46015
commit ab92351bc6

View File

@ -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