]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042)
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Tue, 3 Jul 2018 11:59:32 +0000 (16:59 +0500)
committerTal Einat <taleinat+github@gmail.com>
Tue, 3 Jul 2018 11:59:32 +0000 (14:59 +0300)
Doc/library/sqlite3.rst

index 7d3cab9b67307cffcd870df08281fd2fafa7f0ba..efc74a6bab8ca567683f94abc63b98440e11eb93 100644 (file)
@@ -236,8 +236,8 @@ Module functions and constants
    Registers a callable to convert a bytestring from the database into a custom
    Python type. The callable will be invoked for all database values that are of
    the type *typename*. Confer the parameter *detect_types* of the :func:`connect`
-   function for how the type detection works. Note that the case of *typename* and
-   the name of the type in your query must match!
+   function for how the type detection works. Note that *typename* and the name of
+   the type in your query are matched in case-insensitive manner.
 
 
 .. function:: register_adapter(type, callable)