diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-07-03 05:37:36 -0700 |
---|---|---|
committer | Tal Einat <taleinat+github@gmail.com> | 2018-07-03 15:37:36 +0300 |
commit | 292ce153fcc2d991164d19ad3f3deb86157898d5 (patch) | |
tree | f2054862560c4a8fd3b1cc53ecb96bab9f075074 | |
parent | 53fafafa340e292a1c9e4aacf5860999613c2b36 (diff) | |
download | cpython-git-292ce153fcc2d991164d19ad3f3deb86157898d5.tar.gz |
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042) (GH-8066)
(cherry picked from commit 831c29721dcb1b768c6315a4b8a4059c4c97ee8b)
Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index bd5dd14691..ce53e84513 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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) |