Alexander Belopolsky <belopol...@users.sourceforge.net> added the comment:

Just a random thought (no, I don't know anything about Windows): there are two 
"mu" characters: GREEK SMALL LETTER MU (μ) and MICRO SIGN (µ).  Normalization 
turns one into the other:

>>> from unicodedata import *
>>> name(normalize('NFKC', '\N{MICRO SIGN}'))
'GREEK SMALL LETTER MU'

it is possible that somehow the two characters get confused by OP system.

I could not reproduce the issue on OSX, so I won't reopen it.

----------
nosy: +belopolsky

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10754>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to