mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Accept optional lock object in Condition ctor (tulip issue #198)
This commit is contained in:
parent
e254e53c83
commit
f21fcd09c5
2 changed files with 18 additions and 3 deletions
|
@ -255,14 +255,17 @@ class Condition:
|
|||
A new Lock object is created and used as the underlying lock.
|
||||
"""
|
||||
|
||||
def __init__(self, *, loop=None):
|
||||
def __init__(self, lock=None, *, loop=None):
|
||||
if loop is not None:
|
||||
self._loop = loop
|
||||
else:
|
||||
self._loop = events.get_event_loop()
|
||||
|
||||
# Lock as an attribute as in threading.Condition.
|
||||
lock = Lock(loop=self._loop)
|
||||
if lock is None:
|
||||
lock = Lock(loop=self._loop)
|
||||
elif lock._loop is not self._loop:
|
||||
raise ValueError("loop argument must agree with lock")
|
||||
|
||||
self._lock = lock
|
||||
# Export the lock's locked(), acquire() and release() methods.
|
||||
self.locked = lock.locked
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue