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.

Author hroncok
Recipients JelleZijlstra, docs@python, hroncok
Date 2018-05-15.09:27:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526376462.69.0.682650639539.issue33514@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2018-05-15 09:27:42hroncoksetrecipients: + hroncok, docs@python, JelleZijlstra
2018-05-15 09:27:42hroncoksetmessageid: <1526376462.69.0.682650639539.issue33514@psf.upfronthosting.co.za>
2018-05-15 09:27:42hroncoklinkissue33514 messages
2018-05-15 09:27:42hroncokcreate