summaryrefslogtreecommitdiff
path: root/Lib/dummy_thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r--Lib/dummy_thread.py9
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