Issue 33514: async and await as keywords not mentioned in What’s New In Python 3.7 (original) (raw)

Issue33514

Created on 2018-05-15 09:27 by hroncok, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6857 closed hroncok,2018-05-15 10:35
Messages (5)
msg316632 - (view) Author: Miro Hrončok (hroncok) * Date: 2018-05-15 09:27
According to PEP 492, async and await should be full keywords in Python 3.7. That happened in https://bugs.python.org/issue30406 There is no mention of it at all at https://docs.python.org/3.7/whatsnew/3.7.html#porting-to-python-3-7 or anywhare on that page. I consider this a blocker because it can break things: $ python3.6 -c 'async = 42' $ echo ?0? 0 ?0 python3.7 -c 'async = 42' File "", line 1 async = 42 ^ SyntaxError: invalid syntax
msg316633 - (view) Author: Miro Hrončok (hroncok) * Date: 2018-05-15 09:42
I'll prep a PR
msg316635 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-05-15 10:32
Thanks for the report. The 3.7 What's New document is being completed right now at the PyCon US sprints. CCing the editors.
msg316636 - (view) Author: Miro Hrončok (hroncok) * Date: 2018-05-15 10:39
Oh, didn't know that. Consider my PR as a remote sprint contribution. Hopefully nobody has already written this part.
msg317383 - (view) Author: Miro Hrončok (hroncok) * Date: 2018-05-23 10:42
This was fixed via
History
Date User Action Args
2022-04-11 14:59:00 admin set github: 77695
2018-05-23 10:42:32 hroncok set status: open -> closedmessages: + stage: patch review -> resolved
2018-05-15 10:39:18 hroncok set messages: +
2018-05-15 10:35:38 hroncok set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest6531>
2018-05-15 10:32:34 ned.deily set nosy: + yselivanov, Elvis.Pranskevichus, ned.deilymessages: +
2018-05-15 09:42:53 hroncok set messages: +
2018-05-15 09:27:42 hroncok create