Closed
Description
Documentation
Currently the documentation of sqlite3.create_collation()
(https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.create_collation) says:
Note that the callable will get its parameters as Python bytestrings, which will normally be encoded in UTF-8.
However, as you can see from the discussion on #92742 that's incorrect in python 3 and the callable gets its parameters as Python strs which matches the SQLite docs which says:
Collating functions only matter when comparing string values