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 gvanrossum
Recipients amaury.forgeotdarc, donmez, gvanrossum, loewis
Date 2007-12-19.23:52:38
SpamBayes Score 0.00022984644
Marked as misclassified No
Message-id <ca471dc20712191552k3fb0d0a0gaec21214a42f912@mail.gmail.com>
In-reply-to <1198104983.32.0.232357339312.issue1609@psf.upfronthosting.co.za>
Content
> print u"\u0069".upper()
>
> should give \u0130 (LATIN CAPITAL LETTER I WITH DOT ABOVE)
>
> print u"\u0049".lower()
>
> should give \u0131 (LATIN SMALL LETTER DOTLESS I)
>
> These transformations work fine with python2.5 when
> --with-wctype-functions is used.

I think that is rather a bug in the wctype functions. Those are ASCII
letters 'i' and 'I' and their upper/lower versions are fixed by the
Unicode standard to be the corresponding ASCII letters ('I' and 'i').
The Unicode case conversions are not affected by locale.
History
Date User Action Args
2007-12-19 23:52:39gvanrossumsetspambayes_score: 0.000229846 -> 0.00022984644
recipients: + gvanrossum, loewis, amaury.forgeotdarc, donmez
2007-12-19 23:52:39gvanrossumlinkissue1609 messages
2007-12-19 23:52:38gvanrossumcreate