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 loewis
Recipients PeterL, loewis
Date 2009-02-10.21:32:16
SpamBayes Score 9.700821e-05
Marked as misclassified No
Message-id <4991F25F.8080205@v.loewis.de>
In-reply-to <200902102151.34132.peter.talken@telia.com>
Content
> The same applies  "Å" and "A", "Ä" and "A" and "Ö" and "O"
> which also are also different letters as "Ø" and "O" are. 

Sure. And rightfully, they "Å" is *not* (I repeat: not)
normalized as "A", under NFD:

py> unicodedata.normalize("NFD", u"Å")
u'A\u030a'

> Maybe not in the unicode world but in treal life.

They are different letters also in the Unicode world.

> That's why I'm a little confused.

I think the confusion comes from your assumption that
normalizing "Å" produces "A". It does not. Really not.
History
Date User Action Args
2009-02-10 21:32:19loewissetrecipients: + loewis, PeterL
2009-02-10 21:32:17loewislinkissue5200 messages
2009-02-10 21:32:17loewiscreate