summaryrefslogtreecommitdiffstats
path: root/Lib/_dummy_thread.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-07-13 01:19:15 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-07-13 01:19:15 (GMT)
commit40c8f23a25b48b6fd79025fdfcd84190fe1a8a1f (patch)
tree56bf4873990ff3a763265447c1312f3a37023f4e /Lib/_dummy_thread.py
parent91b3d8d54724a8fd816b900f6156e0ad45867cf8 (diff)
downloadcpython-40c8f23a25b48b6fd79025fdfcd84190fe1a8a1f.zip
cpython-40c8f23a25b48b6fd79025fdfcd84190fe1a8a1f.tar.gz
cpython-40c8f23a25b48b6fd79025fdfcd84190fe1a8a1f.tar.bz2
Merged revisions 64903 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64903 | brett.cannon | 2008-07-12 18:15:07 -0700 (Sat, 12 Jul 2008) | 6 lines 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. ........
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 352215a..e03905c 100644
--- a/Lib/_dummy_thread.py
+++ b/Lib/_dummy_thread.py
@@ -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