diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 18:24:46 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 18:24:46 (GMT) |
commit | 4b006de903ac368b77821dbd6cf87e0d56f63315 (patch) | |
tree | 7d6dd67b80ee9321bd09ba9698a9c36368850b71 | |
parent | bee325387b21b859054002a052149646399b52de (diff) | |
download | cpython-4b006de903ac368b77821dbd6cf87e0d56f63315.zip cpython-4b006de903ac368b77821dbd6cf87e0d56f63315.tar.gz cpython-4b006de903ac368b77821dbd6cf87e0d56f63315.tar.bz2 |
Fixed signature of theThread in test_lock.
This was bug introduced by merge r63352.
-rw-r--r-- | Lib/bsddb/test/test_lock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_lock.py b/Lib/bsddb/test/test_lock.py index 402d147..1259d03 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" |