Guido van Rossum schrieb:
> Clearly we will have a normalization routine so the
> lexer can normalize identifiers, so if you need normalized data it is
> as simple as writing 'XXX'.normalize() (or whatever the spelling
> should be).
It's actually in Python already, and spelled as
unicodedata.normalize("NFC", 'XXX')
Regards,
Martin