Issue #11714: Use 'with' statements to assure a Semaphore releases a

condition variable.  Original patch by Thomas Rachel.
This commit is contained in:
Serhiy Storchaka 2013-04-22 22:54:16 +03:00
commit b00b596c05
3 changed files with 22 additions and 20 deletions

View File

@ -253,31 +253,29 @@ class Semaphore:
raise ValueError("can't specify timeout for non-blocking acquire")
rc = False
endtime = None
self._cond.acquire()
while self._value == 0:
if not blocking:
break
if timeout is not None:
if endtime is None:
endtime = _time() + timeout
else:
timeout = endtime - _time()
if timeout <= 0:
break
self._cond.wait(timeout)
else:
self._value -= 1
rc = True
self._cond.release()
with self._cond:
while self._value == 0:
if not blocking:
break
if timeout is not None:
if endtime is None:
endtime = _time() + timeout
else:
timeout = endtime - _time()
if timeout <= 0:
break
self._cond.wait(timeout)
else:
self._value -= 1
rc = True
return rc
__enter__ = acquire
def release(self):
self._cond.acquire()
self._value += 1
self._cond.notify()
self._cond.release()
with self._cond:
self._value += 1
self._cond.notify()
def __exit__(self, t, v, tb):
self.release()

View File

@ -993,6 +993,7 @@ Fernando Pérez
Pierre Quentel
Brian Quinlan
Anders Qvist
Thomas Rachel
Ram Rachum
Jérôme Radix
Burton Radons

View File

@ -49,6 +49,9 @@ Core and Builtins
Library
-------
- Issue #11714: Use 'with' statements to assure a Semaphore releases a
condition variable. Original patch by Thomas Rachel.
- Issue #16624: `subprocess.check_output` now accepts an `input` argument,
allowing the subprocess's stdin to be provided as a (byte) string.
Patch by Zack Weinberg.