diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2023-01-01 22:26:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-01 22:26:23 (GMT) |
commit | b7a68ab824249ebf053b8149ebb83cd8578781c9 (patch) | |
tree | ee497655217f14bab34a79f51883f9ed89caa109 /Doc | |
parent | 2366b27565ab57f053b4a551ade0e71796a1896c (diff) | |
download | cpython-b7a68ab824249ebf053b8149ebb83cd8578781c9.zip cpython-b7a68ab824249ebf053b8149ebb83cd8578781c9.tar.gz cpython-b7a68ab824249ebf053b8149ebb83cd8578781c9.tar.bz2 |
gh-99953: Purge mention of numeric param style from sqlite3 docs (#100630)
The PEP-249 numeric style has never been supported by sqlite3.
Diffstat (limited to 'Doc')
-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 3622864..0d929d1 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -501,11 +501,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 |