mirror of
https://github.com/django/django.git
synced 2025-03-12 18:30:48 +00:00
Corrected a few typos in Signal.send() docstring.
This commit is contained in:
parent
b34ff66e5b
commit
c68ce18712
@ -171,13 +171,13 @@ class Signal(object):
|
|||||||
Send signal from sender to all connected receivers.
|
Send signal from sender to all connected receivers.
|
||||||
|
|
||||||
If any receiver raises an error, the error propagates back through send,
|
If any receiver raises an error, the error propagates back through send,
|
||||||
terminating the dispatch loop, so it is quite possible to not have all
|
terminating the dispatch loop. So it's possible that all receivers
|
||||||
receivers called if a raises an error.
|
won't be called if an error is raised.
|
||||||
|
|
||||||
Arguments:
|
Arguments:
|
||||||
|
|
||||||
sender
|
sender
|
||||||
The sender of the signal Either a specific object or None.
|
The sender of the signal. Either a specific object or None.
|
||||||
|
|
||||||
named
|
named
|
||||||
Named arguments which will be passed to receivers.
|
Named arguments which will be passed to receivers.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user