Skip to content
Snippets Groups Projects
Unverified Commit 665e5585 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub
Browse files

Fix async method reference links in `compound_stmts` docs (GH-94935)


(cherry picked from commit 79d2f549)

Co-authored-by: default avatarJuly Tikhonov <july.tikh@gmail.com>
parent e50a63ed
Branches
Tags
No related merge requests found
......@@ -1447,7 +1447,7 @@ Is semantically equivalent to::
else:
SUITE2
See also :meth:`__aiter__` and :meth:`__anext__` for details.
See also :meth:`~object.__aiter__` and :meth:`~object.__anext__` for details.
It is a :exc:`SyntaxError` to use an ``async for`` statement outside the
body of a coroutine function.
......@@ -1489,7 +1489,7 @@ is semantically equivalent to::
if not hit_except:
await aexit(manager, None, None, None)
See also :meth:`__aenter__` and :meth:`__aexit__` for details.
See also :meth:`~object.__aenter__` and :meth:`~object.__aexit__` for details.
It is a :exc:`SyntaxError` to use an ``async with`` statement outside the
body of a coroutine function.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment