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 serhiy.storchaka
Recipients ezio.melotti, kingsley, serhiy.storchaka, steven.daprano
Date 2019-04-10.18:15:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1554920103.24.0.226914954075.issue36549@roundup.psfhosted.org>
In-reply-to
Content
This issue is easy if you know C.

* Find the implementation of str.capitalize in unicodeobject.c and make it using the title case. See on the implementation of str.title for example.

* Find tests for str.capitalize and aďd new cases. Finding the proper place for test may be the hardest part.

* Update the documentation for str.capitalize. Add the versionchanged directive.

* Fix the documentation for str.title. Use str.capitalize in the example.

* Add the news and What's New entries.
History
Date User Action Args
2019-04-10 18:15:03serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, steven.daprano, kingsley
2019-04-10 18:15:03serhiy.storchakasetmessageid: <1554920103.24.0.226914954075.issue36549@roundup.psfhosted.org>
2019-04-10 18:15:03serhiy.storchakalinkissue36549 messages
2019-04-10 18:15:03serhiy.storchakacreate