I have a problem with regex , utf-8 chars and IGNORECASE
<_sre.SRE_Match object at 0x2aaaaed0c100>>>re.search(u'é', u'qwért', re.IGNORECASE)
Here everything is ok.
Here that doesn't work. but:>>re.search(u'É', u'qwért', re.IGNORECASE)
É>>print u'é'.upper()
is it a bug in IGNORECASE option?
Thanks for your help
--
Yann