summaryrefslogtreecommitdiff
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 616be103a6..bf9b186180 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -350,8 +350,6 @@ A :class:`Connection` instance has the following attributes and methods:
.. method:: Connection.set_progress_handler(handler, n)
- .. versionadded:: 2.6
-
This routine registers a callback. The callback is invoked for every *n*
instructions of the SQLite virtual machine. This is useful if you want to
get called from SQLite during long-running operations, for example to update
@@ -414,8 +412,6 @@ A :class:`Connection` instance has the following attributes and methods:
the same capabilities as the :kbd:`.dump` command in the :program:`sqlite3`
shell.
- .. versionadded:: 2.6
-
Example::
# Convert file existing_db.db to SQL dump file dump.sql
@@ -764,8 +760,6 @@ case-insensitively by name:
Using the connection as a context manager
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-.. versionadded:: 2.6
-
Connection objects can be used as context managers
that automatically commit or rollback transactions. In the event of an
exception, the transaction is rolled back; otherwise, the transaction is