mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +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
|
@ -104,18 +104,15 @@ class LockType(object):
|
|||
aren't triggered and throw a little fit.
|
||||
|
||||
"""
|
||||
if waitflag is None:
|
||||
if waitflag is None or waitflag:
|
||||
self.locked_status = True
|
||||
return None
|
||||
elif not waitflag:
|
||||
return True
|
||||
else:
|
||||
if not self.locked_status:
|
||||
self.locked_status = True
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
else:
|
||||
self.locked_status = True
|
||||
return True
|
||||
|
||||
__enter__ = acquire
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue