mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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.
This commit is contained in:
parent
0522a9f1eb
commit
3d0b9f095a
3 changed files with 6 additions and 7 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue