diff options
author | F3eQnxN3RriK <drsuaimqjgar@gmail.com> | 2023-06-28 10:43:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 10:43:11 (GMT) |
commit | bbf722dcd39c66418e45991dcf1cdf140c2ce20e (patch) | |
tree | eed86be577e1aaea3ba61fa87f01a89b95ac2986 /Doc/library/exceptions.rst | |
parent | 6b52a581c151914e59c8c367a03bc7309713a73b (diff) | |
download | cpython-bbf722dcd39c66418e45991dcf1cdf140c2ce20e.zip cpython-bbf722dcd39c66418e45991dcf1cdf140c2ce20e.tar.gz cpython-bbf722dcd39c66418e45991dcf1cdf140c2ce20e.tar.bz2 |
gh-101100: Fix reference to asynchronous methods (#106172)
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 8e574b8..9e13354 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -450,7 +450,7 @@ The following exceptions are the exceptions that are usually raised. .. exception:: StopAsyncIteration - Must be raised by :meth:`__anext__` method of an + Must be raised by :meth:`~object.__anext__` method of an :term:`asynchronous iterator` object to stop the iteration. .. versionadded:: 3.5 |