[issue13828] Further improve casefold documentation

2020-08-24 Thread Jim Jewett
Jim Jewett added the comment: Unicode probably won't make the correction, because of backwards compatibility. I do support the sentence suggested in Thorsten's most recent reply. Is expanding ligatures the only other normalization it does? Ideally, we should also mention that it shifts to

[issue13828] Further improve casefold documentation

2020-08-24 Thread Thorsten
Thorsten added the comment: I see. I found the documents. That's an issue. That usage is incorrect. It is still valid to upper case "ß" to SS since "ẞ" is fairly new as an official German character, but the other way around is not valid. As such the current sentence in documentation also

[issue13828] Further improve casefold documentation

2020-08-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: Correctness of casefolding is defined by the Unicode standard, which currently states that "ß" folds to "ss". -- ___ Python tracker ___

[issue13828] Further improve casefold documentation

2020-08-24 Thread Thorsten
Thorsten added the comment: German example in casefolding is plain incorrect. #Casefolding is similar to lowercasing but more aggressive because it is #intended to remove all case distinctions in a string. For example, the #German lowercase letter 'ß' is equivalent to "ss". Since it is

[issue13828] Further improve casefold documentation

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta, cheryl.sabella stage: -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.3 ___ Python tracker

[issue13828] Further improve casefold documentation

2018-10-08 Thread Marc Richter
Marc Richter added the comment: +1 as well. To be honest, I did not understand what this function does in detail yet. Since not too long ago (2017) in Germany, there was an uppercase-variant for the special letter from this function's example (ß) been added to the official orthography [1].

[issue13828] Further improve casefold documentation

2015-10-31 Thread Raymond Hettinger
Raymond Hettinger added the comment: > In addition to lowercasing, this function also expands ligatures, for > example, "fi" becomes "fi". +1 I would have found that sentence to be helpful. -- nosy: +rhettinger ___ Python tracker

[issue13828] Further improve casefold documentation

2015-10-29 Thread Mark Summerfield
Mark Summerfield added the comment: 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

[issue13828] Further improve casefold documentation

2012-01-19 Thread Jim Jewett
New submission from Jim Jewett jimjjew...@gmail.com: http://hg.python.org/cpython/rev/0b5ce36a7a24 changeset:   74515:0b5ce36a7a24 +   Casefolding is similar to lowercasing but more aggressive because it is +   intended to remove all case distinctions in a string. For example, the German

[issue13828] Further improve casefold documentation

2012-01-19 Thread Jim Jewett
Jim Jewett jimjjew...@gmail.com added the comment: Frankly, I do think that sample code is too long, but correctness matters ... perhaps a better solution would be to add either a method or a unicodedata function that does the work, then the extra note could just say Note that most

[issue13828] Further improve casefold documentation

2012-01-19 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: It's a bit unfriendly to launch into discussion of compatiblity caseless matching when the new reader probably has no idea what compatibility-equivalence is. -- ___ Python tracker