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 mark
Recipients Jim.Jewett, benjamin.peterson, docs@python, mark
Date 2015-10-29.07:14:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446102859.11.0.133821459272.issue13828@psf.upfronthosting.co.za>
In-reply-to
Content
I think the str.casefold() docs are fine as far as they go, rightly covering what it _does_ rather than _how_, yet providing a reference for the details. But what they lack is more complete information. For example I discovered this:

>>> x = "files and shuffles"
>>> x
'files and shuffles'
>>> x.casefold()
'files and shuffles'

In view of this I would add one sentence:

    In addition to lowercasing, this function also expands ligatures, for example, "fi" becomes "fi".
History
Date User Action Args
2015-10-29 07:14:19marksetrecipients: + mark, benjamin.peterson, docs@python, Jim.Jewett
2015-10-29 07:14:19marksetmessageid: <1446102859.11.0.133821459272.issue13828@psf.upfronthosting.co.za>
2015-10-29 07:14:19marklinkissue13828 messages
2015-10-29 07:14:18markcreate