diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2006-06-15 08:52:32 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2006-06-15 08:52:32 (GMT) |
commit | 506f7b559ad808de6a75a2d22b007eaee650415b (patch) | |
tree | 76f5adb650bb2094de657c35a5aa8df2ccf8841a /Misc | |
parent | c21e0566b29faad375c82a8972ba8f5380e8d892 (diff) | |
download | cpython-506f7b559ad808de6a75a2d22b007eaee650415b.zip cpython-506f7b559ad808de6a75a2d22b007eaee650415b.tar.gz cpython-506f7b559ad808de6a75a2d22b007eaee650415b.tar.bz2 |
- bsddb: multithreaded DB access using the simple bsddb module interface
now works reliably. It has been updated to use automatic BerkeleyDB
deadlock detection and the bsddb.dbutils.DeadlockWrap wrapper to retry
database calls that would previously deadlock. [SF python bug #775414]
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -152,8 +152,14 @@ Extension Modules aborts the db transaction safely when a modifier callback fails. Fixes SF python patch/bug #1408584. +- bsddb: multithreaded DB access using the simple bsddb module interface + now works reliably. It has been updated to use automatic BerkeleyDB + deadlock detection and the bsddb.dbutils.DeadlockWrap wrapper to retry + database calls that would previously deadlock. [SF python bug #775414] + - Patch #1446489: add support for the ZIP64 extensions to zipfile. + Library ------- |