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 lys.nikolaou
Recipients aeros, eric.smith, gvanrossum, lys.nikolaou, pablogsal, petr.viktorin, serhiy.storchaka, vstinner
Date 2020-04-29.16:27:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588177621.71.0.93121929988.issue40246@roundup.psfhosted.org>
In-reply-to
Content
What's also possible is to handle keywords at tokenizer level and return a different token type for each one of them (like with async and await), which is currently handled at parser level. This would enable us to allow reserved keywords right before a STRING token, thus covering all the possible broken code cases, but continue disallowing arbitrary NAMEs, which would mean better error-reporting in the case of invalid prefixes.
History
Date User Action Args
2020-04-29 16:27:01lys.nikolaousetrecipients: + lys.nikolaou, gvanrossum, vstinner, eric.smith, petr.viktorin, serhiy.storchaka, pablogsal, aeros
2020-04-29 16:27:01lys.nikolaousetmessageid: <1588177621.71.0.93121929988.issue40246@roundup.psfhosted.org>
2020-04-29 16:27:01lys.nikolaoulinkissue40246 messages
2020-04-29 16:27:01lys.nikolaoucreate