mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +00:00
Fix async method reference links in compound_stmts docs (GH-94935)
This commit is contained in:
parent
9c47cf337c
commit
79d2f549ad
1 changed files with 2 additions and 2 deletions
|
|
@ -1495,7 +1495,7 @@ Is semantically equivalent to::
|
||||||
else:
|
else:
|
||||||
SUITE2
|
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
|
It is a :exc:`SyntaxError` to use an ``async for`` statement outside the
|
||||||
body of a coroutine function.
|
body of a coroutine function.
|
||||||
|
|
@ -1537,7 +1537,7 @@ is semantically equivalent to::
|
||||||
if not hit_except:
|
if not hit_except:
|
||||||
await aexit(manager, None, None, None)
|
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
|
It is a :exc:`SyntaxError` to use an ``async with`` statement outside the
|
||||||
body of a coroutine function.
|
body of a coroutine function.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue