This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Use sqlite3_get_autocommit() instead of setting Connection->inTransaction manually
Type: enhancement Stage: resolved
Components: Extension Modules Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, ghaering, python-dev
Priority: normal Keywords: patch

Created on 2016-09-09 06:19 by berker.peksag, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
in_transaction.diff berker.peksag, 2016-09-09 06:19 review
Messages (2)
msg275266 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-09-09 06:19
This is basically a backport of https://github.com/ghaering/pysqlite/commit/9b79188edbc50faa24dc178afe24a10454f3fcad except that Connection.in_transaction is exposed since Python 3.2.
msg275946 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-12 04:16
New changeset 80946f95e88a by Berker Peksag in branch 'default':
Issue #28037: Use sqlite3_get_autocommit() instead of setting Connection->inTransaction manually
https://hg.python.org/cpython/rev/80946f95e88a
History
Date User Action Args
2022-04-11 14:58:36adminsetgithub: 72224
2016-09-12 04:17:06berker.peksagsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2016-09-12 04:16:12python-devsetnosy: + python-dev
messages: + msg275946
2016-09-09 06:19:58berker.peksagcreate