summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2006-06-15 08:52:32 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2006-06-15 08:52:32 (GMT)
commit506f7b559ad808de6a75a2d22b007eaee650415b (patch)
tree76f5adb650bb2094de657c35a5aa8df2ccf8841a /Misc
parentc21e0566b29faad375c82a8972ba8f5380e8d892 (diff)
downloadcpython-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/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c16e0db..f4af2e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-------