Skip to content

Commit 6db7b57

Browse files
committed
Normalize ’transaction control’
1 parent 55a28c8 commit 6db7b57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/sqlite3.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ Connection objects
12951295

12961296
.. attribute:: isolation_level
12971297

1298-
Controls the :ref:`legacy transaction handling mode
1298+
Sets the :ref:`legacy transaction control mode
12991299
<sqlite3-transaction-control-isolation-level>` of :mod:`!sqlite3`.
13001300
If set to ``None``, transactions are never implicitly opened.
13011301
If set to one of ``"DEFERRED"``, ``"IMMEDIATE"``, or ``"EXCLUSIVE"``,
@@ -1308,7 +1308,7 @@ Connection objects
13081308

13091309
.. note::
13101310

1311-
Using :attr:`autocommit` to control transaction handling is
1311+
Using :attr:`autocommit` to set transaction control is
13121312
recommended over using :attr:`!isolation_level`.
13131313
:attr:`!isolation_level` has no effect unless :attr:`autocommit` is
13141314
set to :data:`LEGACY_TRANSACTION_CONTROL` (the default).
@@ -1455,7 +1455,7 @@ Cursor objects
14551455
against all parameter sequences or mappings found in the sequence
14561456
*parameters*. It is also possible to use an
14571457
:term:`iterator` yielding parameters instead of a sequence.
1458-
Uses the same implicit transaction handling as :meth:`~Cursor.execute`.
1458+
Uses the same implicit transaction control as :meth:`~Cursor.execute`.
14591459

14601460
Example:
14611461

0 commit comments

Comments
 (0)