From: Victor Stinner Date: Mon, 2 Dec 2013 13:31:43 +0000 (+0100) Subject: asyncio: replace our with asynchronous in docstring X-Git-Tag: v3.4.0b2~395 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10a8e6ab7b913370672b1d8e0aadf0b34ef1c143;p=python asyncio: replace our with asynchronous in docstring --- diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index b4c316aa22..6cd6779e48 100644 --- a/Lib/asyncio/locks.py +++ b/Lib/asyncio/locks.py @@ -204,7 +204,7 @@ class Event: class Condition: - """A Condition implementation, our equivalent to threading.Condition. + """A Condition implementation, asynchronous equivalent to threading.Condition. This class implements condition variable objects. A condition variable allows one or more coroutines to wait until they are notified by another