diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-07-13 01:20:19 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-07-13 01:20:19 +0000 |
commit | ff931573ce9b0784366d06106dee69f61ff4490c (patch) | |
tree | 51e1a6e15c38e69be00afab97d9bc51654520d42 /Lib/dummy_thread.py | |
parent | f8f30fad4dfdad4a655942963c1e5fc3ae0d9cfb (diff) | |
download | cpython-git-ff931573ce9b0784366d06106dee69f61ff4490c.tar.gz |
Backport of 64903.
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r-- | Lib/dummy_thread.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py index a72c92722f..fac5720479 100644 --- a/Lib/dummy_thread.py +++ b/Lib/dummy_thread.py @@ -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 |