diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-06-01 01:32:12 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-06-01 01:32:12 (GMT) |
commit | d35251dc19b6f2d1cacbb622a578c81f33d8553a (patch) | |
tree | fd24991f9bc92a4f1360c25647ddb159745a8874 /Misc | |
parent | bcb8d3a0a5d2d7e0d962bd9164ea81128472e21c (diff) | |
download | cpython-d35251dc19b6f2d1cacbb622a578c81f33d8553a.zip cpython-d35251dc19b6f2d1cacbb622a578c81f33d8553a.tar.gz cpython-d35251dc19b6f2d1cacbb622a578c81f33d8553a.tar.bz2 |
#8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.
Patch by R. David Murray, unit tests by Shashwat Anand.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,7 @@ Billy G. Allie Kevin Altis Joe Amenta Mark Anacker +Shashwat Anand Anders Andersen John Anderson Erik Andersén @@ -398,6 +398,9 @@ C-API Library ------- +- Issue #8845: sqlite3 Connection objects now have a read-only in_transaction + attribute that is True iff there are uncommitted changes. + - Issue #1289118: datetime.timedelta objects can now be multiplied by float and divided by float and int objects. Results are rounded to the nearest multiple of timedelta.resolution with ties resolved using round-half-to-even |