diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-01 22:35:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-01 22:35:46 (GMT) |
commit | 8e386deee9919a10a4604eaa54f620cd7eef022d (patch) | |
tree | e4429139df6214e11b31695e958976ebf5ab996e /Doc/library | |
parent | fd108e5439e8cf3481e7f836aa0fb5622f57d551 (diff) | |
download | cpython-8e386deee9919a10a4604eaa54f620cd7eef022d.zip cpython-8e386deee9919a10a4604eaa54f620cd7eef022d.tar.gz cpython-8e386deee9919a10a4604eaa54f620cd7eef022d.tar.bz2 |
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@protonmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 65fa1b6..ec1b643 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 |