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: Update token.py etc for ASYNC and AWAIT
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: miss-islington, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2018-04-11 07:17 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6447 merged serhiy.storchaka, 2018-04-11 07:23
PR 6449 merged miss-islington, 2018-04-11 16:16
Messages (4)
msg315184 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-04-11 07:17
After making 'async' and 'await' proper keywords (issue30406), token.py was not regenerated. The proposed patch updates token.py, tokenize.py and the documentation.
msg315186 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-04-11 07:24
ASYNC and AWAIT are kept in the lib2to3 grammar.
msg315194 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-04-11 16:16
New changeset d08972fdb92cad6b813d22205752c97ea18df060 by Serhiy Storchaka in branch 'master':
bpo-33260: Regenerate token.py after removing ASYNC and AWAIT. (GH-6447)
https://github.com/python/cpython/commit/d08972fdb92cad6b813d22205752c97ea18df060
msg315195 - (view) Author: miss-islington (miss-islington) Date: 2018-04-11 17:07
New changeset 4dc3c8ff14572032e63d9938a12813392bcbe982 by Miss Islington (bot) in branch '3.7':
bpo-33260: Regenerate token.py after removing ASYNC and AWAIT. (GH-6447)
https://github.com/python/cpython/commit/4dc3c8ff14572032e63d9938a12813392bcbe982
History
Date User Action Args
2022-04-11 14:58:59adminsetgithub: 77441
2018-04-11 17:22:18serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-04-11 17:07:28miss-islingtonsetnosy: + miss-islington
messages: + msg315195
2018-04-11 16:16:41miss-islingtonsetpull_requests: + pull_request6145
2018-04-11 16:16:04serhiy.storchakasetmessages: + msg315194
2018-04-11 07:24:37serhiy.storchakasetmessages: + msg315186
2018-04-11 07:23:10serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request6143
2018-04-11 07:17:24serhiy.storchakacreate