summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2018-07-03 11:59:32 (GMT)
committerTal Einat <taleinat+github@gmail.com>2018-07-03 11:59:32 (GMT)
commit831c29721dcb1b768c6315a4b8a4059c4c97ee8b (patch)
tree545fa93938af6d54b1a9d36eb12ea4f9996e1c25
parent3cf1f154edb88c108877729ea09f4ac174697fea (diff)
downloadcpython-831c29721dcb1b768c6315a4b8a4059c4c97ee8b.zip
cpython-831c29721dcb1b768c6315a4b8a4059c4c97ee8b.tar.gz
cpython-831c29721dcb1b768c6315a4b8a4059c4c97ee8b.tar.bz2
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042)
-rw-r--r--Doc/library/sqlite3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 7d3cab9..efc74a6 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -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)