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 terry.reedy
Recipients David E. Franco G., martin.panter, terry.reedy, yselivanov
Date 2017-03-03.20:20:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488572436.6.0.717868992422.issue29706@psf.upfronthosting.co.za>
In-reply-to
Content
David, the easiest thing to do would be to copy and paste the following
 + ['async', 'await']
into this line of colorizer.py (ColorDelegator.py in 3.5)
    kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
about line 17, to get
    kw = r"\b" + any("KEYWORD", keyword.kwlist + ['async', 'await']) + r"\b"
History
Date User Action Args
2017-03-03 20:20:36terry.reedysetrecipients: + terry.reedy, martin.panter, yselivanov, David E. Franco G.
2017-03-03 20:20:36terry.reedysetmessageid: <1488572436.6.0.717868992422.issue29706@psf.upfronthosting.co.za>
2017-03-03 20:20:36terry.reedylinkissue29706 messages
2017-03-03 20:20:36terry.reedycreate