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 Kadam Parikh
Recipients Kadam Parikh, ezio.melotti, vstinner
Date 2019-04-20.07:02:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1555743763.0.0.340048392729.issue36671@roundup.psfhosted.org>
In-reply-to
Content
When converting a particular UTF-8 character "İ" to lowercase, it doesn't behave correctly. It returns two lowercase characters instead of one. This is not as desired.

Code:

>>> print("\u0130")
İ
>>> print("\u0130".lower())
i̇
>>>
History
Date User Action Args
2019-04-20 07:02:43Kadam Parikhsetrecipients: + Kadam Parikh, vstinner, ezio.melotti
2019-04-20 07:02:43Kadam Parikhsetmessageid: <1555743763.0.0.340048392729.issue36671@roundup.psfhosted.org>
2019-04-20 07:02:42Kadam Parikhlinkissue36671 messages
2019-04-20 07:02:42Kadam Parikhcreate