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 senn
Recipients alexs, ezio.melotti, lemburg, loewis, senn
Date 2009-10-14.19:25:28
SpamBayes Score 0.08384897
Marked as misclassified No
Message-id <1255548330.08.0.951222721211.issue4610@psf.upfronthosting.co.za>
In-reply-to
Content
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 broken e.g.

>>> u'n\u0303on\u0303e'.title()
u'N\u0303On\u0303E'

That is (where '~' is combining-tilde-over)
n~on~e -title-cases-to-> N~On~E
History
Date User Action Args
2009-10-14 19:25:30sennsetrecipients: + senn, lemburg, loewis, ezio.melotti, alexs
2009-10-14 19:25:30sennsetmessageid: <1255548330.08.0.951222721211.issue4610@psf.upfronthosting.co.za>
2009-10-14 19:25:28sennlinkissue4610 messages
2009-10-14 19:25:28senncreate