On 5/14/07, Guido van Rossum <[EMAIL PROTECTED]> wrote: > Isn't normalization also going to be an issue with using non-ASCII in > general? Does it mean that Python will have to use a normalization > before comparing identifiers as equal? That's terrible, as it will > vastly increase the amount needed to hash a string, too.
PEP 3131 addresses this. The tokenizer would normalize identifier tokens to NFC. Because this happens so early, the rest of Python would be unaffected. -j _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
