Message294324
Actually the locale affects case-insensitively matching if use the re.LOCAL flag. The set of characters matched by b'[A-Z]' is locale-depending. For example in Turkish locale it can include the letters 'İ' and 'ı'. Only 8-bit locales are supported, not UTF-8 locales.
In Unicode case-insensitive mode the expression '[A-Z]' matches not only Latin uppercase and lowercacase letters A-Z and a-z, but also characters 'İ', 'ı', 'ſ', and 'K'. |
|
| Date |
User |
Action |
Args |
| 2017-05-24 05:51:07 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, jwilk, ezio.melotti, mrabarnett, r.david.murray, docs@python, Leif Arne Storset, Brian Ward |
| 2017-05-24 05:51:07 | serhiy.storchaka | set | messageid: <1495605067.23.0.691450553759.issue24896@psf.upfronthosting.co.za> |
| 2017-05-24 05:51:07 | serhiy.storchaka | link | issue24896 messages |
| 2017-05-24 05:51:06 | serhiy.storchaka | create | |
|