summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThomas Grainger <tagrain@gmail.com>2025-04-10 09:43:32 +0100
committerJacob Walls <jacobtylerwalls@gmail.com>2025-11-07 13:17:25 -0500
commit27687475265f88bc0a0bcbfe2ba26da306bbfc20 (patch)
tree782339a9a58101b25dfd065426016978bcfa08eb /docs
parent2501958b5127020411df6271445ccfd0906df70e (diff)
Fixed #36315 -- Used TaskGroup instead of asyncio.gather().
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
=====================