diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
commit | 35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch) | |
tree | 56520e401f31f82834da704af56430a70683bac8 /Doc/library/sqlite3.rst | |
parent | 3513358e11df32cc02047e48a9a9a976343ba16c (diff) | |
download | cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2 |
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r-- | Doc/library/sqlite3.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 616be10..bf9b186 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 |