summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2019-10-28 12:31:23 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-28 13:31:48 +0100
commitc5ccd208657d8a74a5962d320e351297b0f02d9a (patch)
treee443302a3d71a316dc8a10711bd5285cf6cb5d52 /docs
parent76964cce206a0d709d874ea8f36c12f9f1d500e6 (diff)
[3.0.x] Documented the order in which signal receivers are called.
Backport of ab0fd3f58f751859cc7c5260decf0acca26513bf from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/signals.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index f61dee9f33..ee097f9faa 100644
--- a/docs/topics/signals.txt
+++ b/docs/topics/signals.txt
@@ -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)