diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:18:21 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-01-11 01:18:21 (GMT) |
commit | 3f7beb99dd456dd2b8de45a5cb0e1afdf228a262 (patch) | |
tree | 4b241c94931ae1509180fd8c0c6b9635283f23ae /Doc/library/sqlite3.rst | |
parent | b52312923bee35b86fc072ec546cc3e588ae64c9 (diff) | |
download | cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.zip cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.tar.gz cpython-3f7beb99dd456dd2b8de45a5cb0e1afdf228a262.tar.bz2 |
#13934: document sqlite version strings, use correct one in test.
Diffstat (limited to 'Doc/library/sqlite3.rst')
-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 93f6d82..28edfcf 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 |