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.

classification
Title: is(upper/lower/title) are not exactly correct
Type: enhancement Stage: needs patch
Components: Unicode Versions: Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, ezio.melotti, giampaolo.rodola, xtreak
Priority: normal Keywords:

Created on 2012-01-19 04:22 by benjamin.peterson, last changed 2022-04-11 14:57 by admin.

Messages (1)
msg151606 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012-01-19 04:22
The isupper() and islower() methods currently use the Lowercase and Uppercase derived properties. Technically, they should use the Changes_When_(Lowercased/Uppercased/Titlecased) and Changes_When_Casemapped derived properties to compute their results.
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 58030
2018-09-22 16:28:32xtreaksetnosy: + xtreak
2014-08-03 16:37:33BreamoreBoysetversions: + Python 3.5, - Python 3.4
2013-08-17 14:58:25ezio.melottisetversions: + Python 3.4, - Python 3.3
2012-01-20 17:02:19giampaolo.rodolasetnosy: + giampaolo.rodola
2012-01-20 15:02:42ezio.melottisettype: enhancement
stage: needs patch
2012-01-19 04:22:54benjamin.petersoncreate