From: Alexandre Vassalotti Date: Fri, 16 May 2008 18:24:46 +0000 (+0000) Subject: Fixed signature of theThread in test_lock. X-Git-Tag: v3.0b1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b006de903ac368b77821dbd6cf87e0d56f63315;p=thirdparty%2FPython%2Fcpython.git Fixed signature of theThread in test_lock. This was bug introduced by merge r63352. --- diff --git a/Lib/bsddb/test/test_lock.py b/Lib/bsddb/test/test_lock.py index 402d147b4bff..1259d03e74c4 100644 --- a/Lib/bsddb/test/test_lock.py +++ b/Lib/bsddb/test/test_lock.py @@ -142,7 +142,7 @@ class LockingTestCase(unittest.TestCase): if db.version() >= (4,6): self.assertTrue(deadlock_detection.count>0) - def theThread(self, lockType): + def theThread(self, sleepTime, lockType): name = currentThread().getName() if lockType == db.DB_LOCK_WRITE: lt = "write"