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.

classification
Title: str.title()
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.5
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Jon Sobocinski, ezio.melotti
Priority: normal Keywords:

Created on 2015-12-13 04:13 by Jon Sobocinski, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg256314 - (view) Author: Jon Sobocinski (Jon Sobocinski) Date: 2015-12-13 04:13
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.
msg256316 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2015-12-13 05:11
This is by design: https://docs.python.org/3/library/stdtypes.html#str.title
History
Date User Action Args
2022-04-11 14:58:24adminsetgithub: 70042
2015-12-13 05:11:11ezio.melottisetstatus: open -> closed

nosy: + ezio.melotti
messages: + msg256316

resolution: not a bug
stage: resolved
2015-12-13 04:13:51Jon Sobocinskicreate