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 and await as keywords not mentioned in What’s New In Python 3.7
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Elvis.Pranskevichus, JelleZijlstra, docs@python, hroncok, ned.deily, yselivanov
Priority: normal Keywords: patch

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
    $ python3.7 -c 'async = 42'
      File "<string>", 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 issue32996
History
Date User Action Args
2022-04-11 14:59:00adminsetgithub: 77695
2018-05-23 10:42:32hroncoksetstatus: open -> closed

messages: + msg317383
stage: patch review -> resolved
2018-05-15 10:39:18hroncoksetmessages: + msg316636
2018-05-15 10:35:38hroncoksetkeywords: + patch
stage: patch review
pull_requests: + pull_request6531
2018-05-15 10:32:34ned.deilysetnosy: + yselivanov, Elvis.Pranskevichus, ned.deily
messages: + msg316635
2018-05-15 09:42:53hroncoksetmessages: + msg316633
2018-05-15 09:27:42hroncokcreate