]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 3 Jul 2018 12:37:36 +0000 (05:37 -0700)
committerTal Einat <taleinat+github@gmail.com>
Tue, 3 Jul 2018 12:37:36 +0000 (15:37 +0300)
(cherry picked from commit 831c29721dcb1b768c6315a4b8a4059c4c97ee8b)

Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Doc/library/sqlite3.rst

index bd5dd1469158064a7cdffa8b2d172b554e98c6a9..ce53e84513dbdeb33fb7faf16077f7ba2b9d889e 100644 (file)
@@ -206,8 +206,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)