[Python-checkins] gh-99953: Purge mention of numeric param style from sqlite3 docs (GH-100630)

miss-islington webhook-mailer at python.org
Sun Jan 1 17:35:51 EST 2023


https://github.com/python/cpython/commit/8e386deee9919a10a4604eaa54f620cd7eef022d
commit: 8e386deee9919a10a4604eaa54f620cd7eef022d
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: 2023-01-01T14:35:46-08:00
summary:

gh-99953: Purge mention of numeric param style from sqlite3 docs (GH-100630)


The PEP-249 numeric style has never been supported by sqlite3.
(cherry picked from commit b7a68ab824249ebf053b8149ebb83cd8578781c9)

Co-authored-by: Erlend E. Aasland <erlend.aasland at protonmail.com>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 65fa1b613153..ec1b643dac92 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -453,11 +453,7 @@ Module constants
 
    .. note::
 
-      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.
+      The ``named`` DB-API parameter style is also supported.
 
 .. data:: sqlite_version
 



More information about the Python-checkins mailing list