This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: async/await keywords are missing from reference docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, hongminhee, martin.panter, yselivanov
Priority: normal Keywords: patch

Created on 2016-05-15 08:06 by hongminhee, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch.diff hongminhee, 2016-05-15 08:06 Patch to add missing async/await keywords to reference docs review
Repositories containing patches
https://bitbucket.org/dahlia/cpython#3.5
Messages (3)
msg265593 - (view) Author: Hong Minhee (hongminhee) Date: 2016-05-15 08:06
The async/await keywords are missing from §2.3.1. Keywords in reference docs.

The attached patch adds two missing keywords to Doc/reference/lexical_analysis.rst file.
msg265601 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-05-15 09:12
..Related: Issue 26264, about updating the keywords module.

Technically they are only reserved inside “async def” functions. So it could be misleading adding them with the other always-reserved keywords without an explanation.
msg323570 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-08-15 15:09
The list has been updated in https://github.com/python/cpython/commit/bf9d317626eebcf79bd0756b4dd43df82d5cc186 (Issue 31810

Closing this as 'outdated'. Thanks for the report and for the patch.
History
Date User Action Args
2022-04-11 14:58:31adminsetgithub: 71213
2018-08-15 15:09:53berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg323570

resolution: out of date
stage: patch review -> resolved
2016-05-15 09:12:15martin.pantersetnosy: + martin.panter, yselivanov

messages: + msg265601
stage: patch review
2016-05-15 08:06:20hongminheecreate