Jeff Senn added the comment:
So, is it not considered a bug that:
>>> "This isn't right".title()
"This Isn'T Right"
!?!?!?
--
___
Python tra
Jeff Senn added the comment:
Referred to this from issue 4610... anyone following this might want to
look there as well.
--
nosy: +senn
___
Python tracker
<http://bugs.python.org/issue6
Jeff Senn added the comment:
Yikes! I just noticed that u''.title() is really broken!
It doesn't really pay attention to word breaks --
only characters that "have case".
Therefore when there are (caseless)
combining characters in a word it's really broke
Jeff Senn added the comment:
> Feel free to upload it here. I'm fairly skeptical that it is
> possible to implement casing "correctly" in a locale-independent
> way.
Ok. I will try to find time to complete it enough to be readable.
Unicode (see sec 3.13) specifi
Jeff Senn added the comment:
Has there been any action on this? a PEP?
I disagree that using ICU is good way to simply get proper
unicode casing. (A heavy hammer for a small task...)
I agree locales are a different issue (and would prefer
optional arguments to the unicode object casing