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 mark.dickinson
Recipients mark.dickinson, weightwatchers-carlanderson
Date 2021-03-16.18:54:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1615920883.97.0.00531890123635.issue43520@roundup.psfhosted.org>
In-reply-to
Content
Seems worth noting that Unicode fractions like ⅔ produce a FRACTION SLASH character when normalized:

>>> unicodedata.normalize('NFKC', '⅔')
'2⁄3'
>>> list(map(unicodedata.name, unicodedata.normalize('NFKC', '⅔')))
['DIGIT TWO', 'FRACTION SLASH', 'DIGIT THREE']
History
Date User Action Args
2021-03-16 18:54:44mark.dickinsonsetrecipients: + mark.dickinson, weightwatchers-carlanderson
2021-03-16 18:54:43mark.dickinsonsetmessageid: <1615920883.97.0.00531890123635.issue43520@roundup.psfhosted.org>
2021-03-16 18:54:43mark.dickinsonlinkissue43520 messages
2021-03-16 18:54:43mark.dickinsoncreate