Skip to content

Commit a695ae6

Browse files
erlend-aaslandmiss-islington
authored andcommitted
pythongh-92780: Improve sqlite3.Connection.create_collation docs (pythonGH-92790)
Co-authored-by: Alex Waygood <[email protected]> (cherry picked from commit 7ee19e2) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
1 parent ab003d0 commit a695ae6

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

Doc/library/sqlite3.rst

+8-11
Original file line numberDiff line numberDiff line change
@@ -431,22 +431,19 @@ Connection Objects
431431

432432
.. method:: create_collation(name, callable)
433433

434-
Creates a collation with the specified *name* and *callable*. The callable will
435-
be passed two string arguments. It should return -1 if the first is ordered
436-
lower than the second, 0 if they are ordered equal and 1 if the first is ordered
437-
higher than the second. Note that this controls sorting (ORDER BY in SQL) so
438-
your comparisons don't affect other SQL operations.
434+
Create a collation named *name* using the collating function *callable*.
435+
*callable* is passed two :class:`string <str>` arguments,
436+
and it should return an :class:`integer <int>`:
439437

440-
Note that the callable will get its parameters as Python bytestrings, which will
441-
normally be encoded in UTF-8.
438+
* ``1`` if the first is ordered higher than the second
439+
* ``-1`` if the first is ordered lower than the second
440+
* ``0`` if they are ordered equal
442441

443-
The following example shows a custom collation that sorts "the wrong way":
442+
The following example shows a reverse sorting collation:
444443

445444
.. literalinclude:: ../includes/sqlite3/collation_reverse.py
446445

447-
To remove a collation, call ``create_collation`` with ``None`` as callable::
448-
449-
con.create_collation("reverse", None)
446+
Remove a collation function by setting *callable* to :const:`None`.
450447

451448

452449
.. method:: interrupt()

0 commit comments

Comments
 (0)