Backport of 64903.

This commit is contained in:
Brett Cannon 2008-07-13 01:20:19 +00:00
parent f8f30fad4d
commit ff931573ce
3 changed files with 7 additions and 6 deletions

View file

@ -107,18 +107,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