[Python-checkins] Docs: add `named` to the list of styles in the sqlite3.paramstyle attr docs (GH-99078)

miss-islington webhook-mailer at python.org
Thu Nov 3 19:31:39 EDT 2022


https://github.com/python/cpython/commit/3a7e9ea090b87a35141c630f8b09b9e8d52837f2
commit: 3a7e9ea090b87a35141c630f8b09b9e8d52837f2
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-11-03T16:31:33-07:00
summary:

Docs: add `named` to the list of styles in the sqlite3.paramstyle attr docs (GH-99078)

(cherry picked from commit 016c7d37b6acfe2203542a2655080c6402b3be1f)

Co-authored-by: Nick Pope <nick at nickpope.me.uk>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 8573130536bd..3a4714ea18e0 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -452,9 +452,10 @@ Module constants
 
    .. note::
 
-      The :mod:`!sqlite3` module supports both ``qmark`` and ``numeric`` DB-API
-      parameter styles, because that is what the underlying SQLite library
-      supports. However, the DB-API does not allow multiple values for
+      The :mod:`!sqlite3` module supports ``qmark``, ``numeric``,
+      and ``named`` DB-API parameter styles,
+      because that is what the underlying SQLite library supports.
+      However, the DB-API does not allow multiple values for
       the ``paramstyle`` attribute.
 
 .. data:: sqlite_version



More information about the Python-checkins mailing list