[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-11-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ __

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-10-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I tried to correct the documentation in issue31714. -- ___ Python tracker ___ ___ Python-bugs-li

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-09-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This wording is not correct as I noted in msg294324. -- versions: -Python 3.5 ___ Python tracker ___

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-09-04 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- pull_requests: +3340 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-24 Thread Brian Ward
Brian Ward added the comment: OK, I'll look at this soon and come up with the next iteration. -- ___ Python tracker ___ ___ Python-bug

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-23 Thread Brian Ward
Changes by Brian Ward : -- pull_requests: +1863 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-23 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +1862 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-23 Thread Brian Ward
Changes by Brian Ward : -- nosy: +Brian Ward ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-15 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE

2017-05-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As was reported in issue30373 there is the same issue with re.LOCALE. This documentation issue should be easy for everyone who is fluent in English and familiar with the re module. -- keywords: +easy nosy: +serhiy.storchaka title: It is undocumented