[Python-checkins] cpython (2.7): #13934: document sqlite version strings.

r.david.murray python-checkins at python.org
Fri Jan 11 02:23:18 CET 2013


http://hg.python.org/cpython/rev/315949b1842e
changeset:   81377:315949b1842e
branch:      2.7
parent:      81371:0f5067d9e1d8
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Jan 10 20:22:57 2013 -0500
summary:
  #13934: document sqlite version strings.

files:
  Doc/library/sqlite3.rst |  18 ++++++++++++++++++
  1 files changed, 18 insertions(+), 0 deletions(-)


diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -118,6 +118,24 @@
 ------------------------------
 
 
+.. 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list