diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-01-10 20:22:57 -0500 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-01-10 20:22:57 -0500 |
commit | bcd9971b0592946687d8aeb120efde5b8f5909e6 (patch) | |
tree | 9b202cf2d96a85a348199fce01d117b653ae45ef | |
parent | 9dccb017033cfba7ffdc6414ea1782a653250685 (diff) | |
download | cpython-git-bcd9971b0592946687d8aeb120efde5b8f5909e6.tar.gz |
#13934: document sqlite version strings.
-rw-r--r-- | Doc/library/sqlite3.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index ba51e48bc8..9b913af001 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -118,6 +118,24 @@ Module functions and constants ------------------------------ +.. data:: version + + The version number of this module, as a string. This is not the version of + the SQLite library. + +.. data:: version_info + + The version number of this module, as a tuple of integers. This is not the + version of the SQLite library. + +.. data:: sqlite_version + + The version number of the run-time SQLite library, as a string. + +.. data:: sqlite_version_info + + The version number of the run-time SQLite library, as a tuple of integers. + .. data:: PARSE_DECLTYPES This constant is meant to be used with the *detect_types* parameter of the |