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 serhiy.storchaka
Recipients Arfrever, ezio.melotti, gvanrossum, lemburg, loewis, mrabarnett, pitrou, serhiy.storchaka, tchrist, terry.reedy
Date 2014-09-21.20:45:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411332306.83.0.105424261001.issue12728@psf.upfronthosting.co.za>
In-reply-to
Content
Here is preliminary patch which fixes case-insensitive regular expression matching of unicode strings. It is incomplete, it needs applying patches from issue17381, which fixes other aspects of case-insensitive matching.

One bug is left for Turkish letters. This matching is not transitive. Three pairs of letters should match: ı ~ I ~ i ~ İ. All other combinations should not match (ı !~ i, I !~ İ, ı !~ İ). This patch doesn't fixes this bug.
History
Date User Action Args
2014-09-21 20:45:07serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, gvanrossum, loewis, terry.reedy, pitrou, ezio.melotti, mrabarnett, Arfrever, tchrist
2014-09-21 20:45:06serhiy.storchakasetmessageid: <1411332306.83.0.105424261001.issue12728@psf.upfronthosting.co.za>
2014-09-21 20:45:06serhiy.storchakalinkissue12728 messages
2014-09-21 20:45:06serhiy.storchakacreate