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 mrabarnett
Recipients Nate Soares, ezio.melotti, mrabarnett, vstinner
Date 2017-06-26.19:49:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498506567.1.0.769594350133.issue30772@psf.upfronthosting.co.za>
In-reply-to
Content
See PEP 3131 -- Supporting Non-ASCII Identifiers

It says: """All identifiers are converted into the normal form NFKC while parsing; comparison of identifiers is based on NFKC."""

>>> import unicodedata
>>> unicodedata.name(unicodedata.normalize('NFKC', '\N{MATHEMATICAL DOUBLE-STRUCK CAPITAL B}'))
'LATIN CAPITAL LETTER B'
History
Date User Action Args
2017-06-26 19:49:27mrabarnettsetrecipients: + mrabarnett, vstinner, ezio.melotti, Nate Soares
2017-06-26 19:49:27mrabarnettsetmessageid: <1498506567.1.0.769594350133.issue30772@psf.upfronthosting.co.za>
2017-06-26 19:49:27mrabarnettlinkissue30772 messages
2017-06-26 19:49:26mrabarnettcreate