Message340563
| 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:43 | Kadam Parikh | set | recipients: + Kadam Parikh, vstinner, ezio.melotti |
| 2019-04-20 07:02:43 | Kadam Parikh | set | messageid: <1555743763.0.0.340048392729.issue36671@roundup.psfhosted.org> |
| 2019-04-20 07:02:42 | Kadam Parikh | link | issue36671 messages |
| 2019-04-20 07:02:42 | Kadam Parikh | create | |