summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/signals.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index 4d32c55a2b..8f2246c55a 100644
--- a/docs/topics/signals.txt
+++ b/docs/topics/signals.txt
@@ -323,11 +323,15 @@ in order to reduce the number of sync/async calling-style switches within a
they are async before being called. This means that an asynchronous receiver
registered before a synchronous receiver may be executed after the synchronous
receiver. In addition, async receivers are executed concurrently using
-``asyncio.gather()``.
+:class:`asyncio.TaskGroup`.
All built-in signals, except those in the async request-response cycle, are
dispatched using :meth:`Signal.send`.
+.. versionchanged:: 6.1
+
+ In older versions, async receivers were executed via ``asyncio.gather()``.
+
Disconnecting signals
=====================