diff options
-rw-r--r-- | Doc/reference/expressions.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 9f6f6f7..d877b61 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 |