[issue15774] String method title() produces incorrect resutls

2012-08-23 Thread R. David Murray
R. David Murray added the comment: This is a duplicate of issue 7008. See also issue 6412, which offers some small hope that some day there may be an algorithm that can fix this. -- nosy: +r.david.murray resolution: -> duplicate stage: -> committed/rejected status: open -> closed sup

[issue15774] String method title() produces incorrect resutls

2012-08-23 Thread Ezio Melotti
Ezio Melotti added the comment: This is a known "issue", see http://docs.python.org/library/stdtypes.html#str.title -- nosy: +ezio.melotti ___ Python tracker ___ ___

[issue15774] String method title() produces incorrect resutls

2012-08-23 Thread mesheb82
New submission from mesheb82: I got unexpected results when working with a string that has an apostrophe in it. "Joe's".title() >> "Joe'S" 'Joe"s'.title() >> 'Joe"S' -- components: Interpreter Core messages: 168969 nosy: mesheb82 priority: normal severity: normal status: open title: St