➜

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 steven.daprano
Recipients ezio.melotti, steven.daprano, vstinner
Date 2018-05-31.04:53:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527742389.0.0.682650639539.issue33705@psf.upfronthosting.co.za>
In-reply-to
Content
There is a loophole in the Unicode normalisation which allows the creation of names matching keywords.

class Spam:
    locals()['if'] = 1

Spam.𝐒𝐟    # U+1D422 U+1D41F
# returns 1

Those two characters are 'MATHEMATICAL BOLD SMALL I' and 'MATHEMATICAL BOLD SMALL F'. They ought to be normalised to "if", which is a keyword.

Of course Spam.if is a syntax error, and I believe Spam.𝐒𝐟 ought to be as well.

Another example:

py> globals()['for'] = 2
py> 𝐟or
2



I also asked about this here:

https://mail.python.org/pipermail/python-dev/2018-May/153619.html
History
Date User Action Args
2018-05-31 04:53:09steven.dapranosetrecipients: + steven.daprano, vstinner, ezio.melotti
2018-05-31 04:53:09steven.dapranosetmessageid: <1527742389.0.0.682650639539.issue33705@psf.upfronthosting.co.za>
2018-05-31 04:53:08steven.dapranolinkissue33705 messages
2018-05-31 04:53:08steven.dapranocreate