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 eryksun
Recipients da, eryksun, ezio.melotti, lys.nikolaou, pablogsal, vstinner
Date 2022-01-29.19:24:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643484296.82.0.724717363912.issue46572@roundup.psfhosted.org>
In-reply-to
Content
Please read "Identifiers and keywords" [1] in the documentation. For example:

    >>> import unicodedata as ud
    >>> ud.normalize('NFKC', '𝖇𝖆𝖗') == 'bar'
    True

    >>> c = '\N{CYRILLIC SMALL LETTER A}'
    >>> ud.name(ud.normalize('NFKC', c))
    'CYRILLIC SMALL LETTER A'

---
[1] https://docs.python.org/3/reference/lexical_analysis.html?highlight=nfkc#identifiers
History
Date User Action Args
2022-01-29 19:24:56eryksunsetrecipients: + eryksun, vstinner, ezio.melotti, lys.nikolaou, pablogsal, da
2022-01-29 19:24:56eryksunsetmessageid: <1643484296.82.0.724717363912.issue46572@roundup.psfhosted.org>
2022-01-29 19:24:56eryksunlinkissue46572 messages
2022-01-29 19:24:56eryksuncreate