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 Vanessa McHale, steven.daprano
Date 2017-06-09.11:07:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497006443.92.0.258228005086.issue30608@psf.upfronthosting.co.za>
In-reply-to
Content
By the way, perhaps a simpler demonstration which is more likely to render correctly on most people's systems would be to use Latin-1 combining characters:

py> s1 = 'àéîõü'
py> s2 = unicodedata.normalize('NFD', s1) # decompose into combining chars
py> s1, s2
('àéîõü', 'àéîõü')
py> assert len(s1) == 5 and len(s2) == 10
py>
History
Date User Action Args
2017-06-09 11:07:23steven.dapranosetrecipients: + steven.daprano, Vanessa McHale
2017-06-09 11:07:23steven.dapranosetmessageid: <1497006443.92.0.258228005086.issue30608@psf.upfronthosting.co.za>
2017-06-09 11:07:23steven.dapranolinkissue30608 messages
2017-06-09 11:07:23steven.dapranocreate