[issue25855] str.title()

2015-12-12 Thread Ezio Melotti
Ezio Melotti added the comment: This is by design: https://docs.python.org/3/library/stdtypes.html#str.title -- nosy: +ezio.melotti resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker

[issue25855] str.title()

2015-12-12 Thread Jon Sobocinski
New submission from Jon Sobocinski: Perhaps not a bug, but an odd behavior of pythons built in .title() method. When calling this method on a string such as this: "bill's", python will change the string to "Bill'S". This seems like a behavior that may want to be changed. -- components: