Issue 33260: Update token.py etc for ASYNC and AWAIT (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/77441

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 (), 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:59 admin set github: 77441
2018-04-11 17:22:18 serhiy.storchaka set status: open -> closedresolution: fixedstage: patch review -> resolved
2018-04-11 17:07:28 miss-islington set nosy: + miss-islingtonmessages: +
2018-04-11 16:16:41 miss-islington set pull_requests: + <pull%5Frequest6145>
2018-04-11 16:16:04 serhiy.storchaka set messages: +
2018-04-11 07:24:37 serhiy.storchaka set messages: +
2018-04-11 07:23:10 serhiy.storchaka set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest6143>
2018-04-11 07:17:24 serhiy.storchaka create