1
0
mirror of https://github.com/django/django.git synced 2025-04-12 11:32:20 +00:00

[3.0.x] Documented the order in which signal receivers are called.

Backport of ab0fd3f58f751859cc7c5260decf0acca26513bf from master
This commit is contained in:
Adam Johnson 2019-10-28 12:31:23 +00:00 committed by Mariusz Felisiak
parent 76964cce20
commit c5ccd20865

View File

@ -49,7 +49,8 @@ Listening to signals
To receive a signal, register a *receiver* function using the
:meth:`Signal.connect` method. The receiver function is called when the signal
is sent.
is sent. All of the signal's receiver functions are called one at a time, in
the order they were registered.
.. method:: Signal.connect(receiver, sender=None, weak=True, dispatch_uid=None)