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 belopolsky
Recipients belopolsky, brian.curtin, r.david.murray, tim.golden, wyj1046
Date 2010-12-22.03:48:17
SpamBayes Score 1.0397359e-06
Marked as misclassified No
Message-id <1292989703.88.0.694516597732.issue10754@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2010-12-22 03:48:23belopolskysetrecipients: + belopolsky, tim.golden, r.david.murray, brian.curtin, wyj1046
2010-12-22 03:48:23belopolskysetmessageid: <1292989703.88.0.694516597732.issue10754@psf.upfronthosting.co.za>
2010-12-22 03:48:17belopolskylinkissue10754 messages
2010-12-22 03:48:17belopolskycreate