[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:47 EST 2023


https://github.com/python/cpython/commit/e7a2659b4c8d4f7ac045cd5b4b813b4fde9f67c1
commit: e7a2659b4c8d4f7ac045cd5b4b813b4fde9f67c1
branch: 3.11
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:39-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 e8db6c55c938..6d0422122a3d 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -476,11 +476,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