gh-133390: Document SQLITE_KEYWORDS (GH-135659)

This commit is contained in:
Stan Ulbrych 2025-06-18 11:56:49 +01:00 committed by GitHub
parent 1c7efaf58a
commit 5f6ab92465
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View file

@ -507,6 +507,15 @@ Module constants
Version number of the runtime SQLite library as a :class:`tuple` of
:class:`integers <int>`.
.. data:: SQLITE_KEYWORDS
A :class:`tuple` containing all sqlite3 keywords.
This constant is only available if Python was compiled with SQLite
3.24.0 or greater.
.. versionadded:: next
.. data:: threadsafety
Integer constant required by the DB-API 2.0, stating the level of thread

View file

@ -1 +1,2 @@
Support keyword completion in the :mod:`sqlite3` command-line interface.
Support keyword completion in the :mod:`sqlite3` command-line interface and add
:data:`sqlite3.SQLITE_KEYWORDS` constant.