From bc6e94a0fadd5913d8e14453f69cc3942f13ccca Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Wed, 28 May 2003 08:26:43 +0000 Subject: [PATCH] Wrap the cursor functions with dbutils.DeadlockWrap to deal with the expected DBLockDeadLockErrors. --- Lib/bsddb/test/test_thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/bsddb/test/test_thread.py b/Lib/bsddb/test/test_thread.py index 48e8c9a8131..71b6c3087c2 100644 --- a/Lib/bsddb/test/test_thread.py +++ b/Lib/bsddb/test/test_thread.py @@ -267,12 +267,12 @@ class SimpleThreadedBase(BaseThreadedTestCase): for loop in range(5): c = d.cursor() count = 0 - rec = c.first() + rec = dbutils.DeadlockWrap(c.first) while rec: count += 1 key, data = rec self.assertEqual(self.makeData(key), data) - rec = c.next() + rec = dbutils.DeadlockWrap(c.next) if verbose: print "%s: found %d records" % (name, count) c.close()