From 75d23b2e3d94610a4a3be59c9f4c79ac808eb53a Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 8 Jun 2023 00:30:33 +0200 Subject: [PATCH] [3.11] Add single value `agen.athrow(value)` signature to the 3.11 docs gh-105269 (GH-105468) (cherry picked from commit acf3916e84158308660ed07c474a564e045d6884) Co-authored-by: Federico Caselli --- Doc/reference/expressions.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 9f6f6f7d81527d..d877b61b4b1949 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -725,7 +725,8 @@ which are used to control the execution of a generator function. because there is no yield expression that could receive the value. -.. coroutinemethod:: agen.athrow(type[, value[, traceback]]) +.. coroutinemethod:: agen.athrow(value) + agen.athrow(type[, value[, traceback]]) Returns an awaitable that raises an exception of type ``type`` at the point where the asynchronous generator was paused, and returns the next value