Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Cpython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sip
Cpython
Commits
79d2f549
Unverified
Commit
79d2f549
authored
2 years ago
by
July Tikhonov
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix async method reference links in `compound_stmts` docs (GH-94935)
parent
9c47cf33
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/reference/compound_stmts.rst
+2
-2
2 additions, 2 deletions
Doc/reference/compound_stmts.rst
with
2 additions
and
2 deletions
Doc/reference/compound_stmts.rst
+
2
−
2
View file @
79d2f549
...
...
@@ -1495,7 +1495,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.
...
...
@@ -1537,7 +1537,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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment