mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
In asyncio.locks.Lock.acquire(): Avoid deadlock when a cancelled future is in self._waiters.
This commit is contained in:
parent
4b7b565c58
commit
83f5a3846c
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class Lock(_ContextManagerMixin):
|
||||||
This method blocks until the lock is unlocked, then sets it to
|
This method blocks until the lock is unlocked, then sets it to
|
||||||
locked and returns True.
|
locked and returns True.
|
||||||
"""
|
"""
|
||||||
if not self._waiters and not self._locked:
|
if not self._locked and all(w.cancelled() for w in self._waiters):
|
||||||
self._locked = True
|
self._locked = True
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue