diff options
author | Kalyan <kalyan.ben10@live.com> | 2022-06-07 23:34:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-07 23:34:50 (GMT) |
commit | ffc58a9710172b2d716a810a9f303828f3ebf108 (patch) | |
tree | 09f09c68560fa331909287e6284738719bd95417 /Doc | |
parent | f8eae6f5c35e9def07a732f6bc7744aae106f9b2 (diff) | |
download | cpython-ffc58a9710172b2d716a810a9f303828f3ebf108.zip cpython-ffc58a9710172b2d716a810a9f303828f3ebf108.tar.gz cpython-ffc58a9710172b2d716a810a9f303828f3ebf108.tar.bz2 |
gh-93370: Deprecate sqlite3.version and sqlite3.version_info (#93482)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sqlite3.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 5c62047..140cd94 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -142,12 +142,22 @@ Module functions and constants The version number of this module, as a string. This is not the version of the SQLite library. + .. deprecated-removed:: 3.12 3.14 + This constant used to reflect the version number of the ``pysqlite`` + package, a third-party library which used to upstream changes to + ``sqlite3``. Today, it carries no meaning or practical value. + .. data:: version_info The version number of this module, as a tuple of integers. This is not the version of the SQLite library. + .. deprecated-removed:: 3.12 3.14 + This constant used to reflect the version number of the ``pysqlite`` + package, a third-party library which used to upstream changes to + ``sqlite3``. Today, it carries no meaning or practical value. + .. data:: sqlite_version |