summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dummy_thread.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-07-13 01:15:07 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-07-13 01:15:07 (GMT)
commit3d0b9f095a1ccda7d6c04a9a1d05d245d8b82e26 (patch)
tree15c369ccd303f5300f4eadd3e66bc1df63f933fa /Lib/test/test_dummy_thread.py
parent0522a9f1eba72a7fdb6b5b6065872654f1d6becc (diff)
downloadcpython-3d0b9f095a1ccda7d6c04a9a1d05d245d8b82e26.zip
cpython-3d0b9f095a1ccda7d6c04a9a1d05d245d8b82e26.tar.gz
cpython-3d0b9f095a1ccda7d6c04a9a1d05d245d8b82e26.tar.bz2
dummy_thread.acquire() would return None if no waitflag argument was given. It
should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch.
Diffstat (limited to 'Lib/test/test_dummy_thread.py')
-rw-r--r--Lib/test/test_dummy_thread.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_dummy_thread.py b/Lib/test/test_dummy_thread.py
index f274e0a..58faeb4 100644
--- a/Lib/test/test_dummy_thread.py
+++ b/Lib/test/test_dummy_thread.py
@@ -60,6 +60,7 @@ class LockTests(unittest.TestCase):
#Make sure that an unconditional locking returns True.
self.failUnless(self.lock.acquire(1) is True,
"Unconditional locking did not return True.")
+ self.failUnless(self.lock.acquire() is True)
def test_uncond_acquire_blocking(self):
#Make sure that unconditional acquiring of a locked lock blocks.