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 rhettinger
Recipients ezio.melotti, magniff, rhettinger, vstinner
Date 2016-07-24.18:25:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469384707.76.0.138360593175.issue27608@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a little more detail on what is occurring:

>>> from unicodedata import *
>>> c = 'µ'
>>> for s in (c, c.lower(), c.upper(), c.lower().upper(), c.upper().lower()):
	print(s, ord(s), name(s), category(s))
	
µ 181 MICRO SIGN Ll
µ 181 MICRO SIGN Ll
Μ 924 GREEK CAPITAL LETTER MU Lu
Μ 924 GREEK CAPITAL LETTER MU Lu
μ 956 GREEK SMALL LETTER MU Ll
History
Date User Action Args
2016-07-24 18:25:07rhettingersetrecipients: + rhettinger, vstinner, ezio.melotti, magniff
2016-07-24 18:25:07rhettingersetmessageid: <1469384707.76.0.138360593175.issue27608@psf.upfronthosting.co.za>
2016-07-24 18:25:07rhettingerlinkissue27608 messages
2016-07-24 18:25:07rhettingercreate