diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:20:19 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:20:19 (GMT) |
commit | edb0e5eb2c012f02ab3d7dbb968e7647b581a9ca (patch) | |
tree | 353c0d7f38f522221370e1a8f33fe37168f87f7e /Doc | |
parent | f86b3c394ce8edab17eac7d2d4ed107679ef6058 (diff) | |
parent | d394455aaebaebe98732ebe4d66c9a28acc1139e (diff) | |
download | cpython-edb0e5eb2c012f02ab3d7dbb968e7647b581a9ca.zip cpython-edb0e5eb2c012f02ab3d7dbb968e7647b581a9ca.tar.gz cpython-edb0e5eb2c012f02ab3d7dbb968e7647b581a9ca.tar.bz2 |
merge #13934: document sqlite version strings, use correct one in test.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sqlite3.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 7d156def..e31ae77 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -109,6 +109,28 @@ 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 |