[issue35639] Lowecasing Unicode Characters

2019-01-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Latin Capital Letter I with Dot Above ___ Python tracker ___

[issue35639] Lowecasing Unicode Characters

2019-01-03 Thread Steven D'Aprano
Change by Steven D'Aprano : -- nosy: +steven.daprano ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue35639] Lowecasing Unicode Characters

2019-01-02 Thread Ma Lin
Ma Lin added the comment: please read this discussion https://bugs.python.org/issue17252 behavior in Python 3.2- is correct for Turkish users. behavior in Python 3.3+ is correct for non-Turkish users. -- nosy: +Ma Lin ___ Python tracker

[issue35639] Lowecasing Unicode Characters

2019-01-02 Thread Erdem Uney
New submission from Erdem Uney : assert 'ŞİŞLİ'.lower() == 'şişli' Lowercasing the capital İ (with a dot on - \u0130) adds a unicode character \u0307 after i and if there is a following character it adds that dot (\u0307) over that character. The behavior is different in Python 2.7.10 where it