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.

Author fschulze
Recipients fschulze
Date 2016-10-24.11:05:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477307118.31.0.70785963389.issue28518@psf.upfronthosting.co.za>
In-reply-to
Content
Using:

conn = sqlite3.connect(':memory:', isolation_level='IMMEDIATE')
conn.execute('begin immediate')

Throws:

sqlite3.OperationalError: cannot start a transaction within a transaction

This didn't happen in previous versions and the conn.in_transaction attribute is False right before the call to execute, so this situation doesn't seem to be detectable upfront for backward compatibility.
History
Date User Action Args
2016-10-24 11:05:18fschulzesetrecipients: + fschulze
2016-10-24 11:05:18fschulzesetmessageid: <1477307118.31.0.70785963389.issue28518@psf.upfronthosting.co.za>
2016-10-24 11:05:18fschulzelinkissue28518 messages
2016-10-24 11:05:17fschulzecreate