diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-02 13:31:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-02 13:31:43 (GMT) |
commit | 10a8e6ab7b913370672b1d8e0aadf0b34ef1c143 (patch) | |
tree | c839253912433898fbace038328b2a4be3dbd04c /Lib/asyncio | |
parent | c37dd614b6acd841ff0f638e9ef21a7d8db561f0 (diff) | |
download | cpython-10a8e6ab7b913370672b1d8e0aadf0b34ef1c143.zip cpython-10a8e6ab7b913370672b1d8e0aadf0b34ef1c143.tar.gz cpython-10a8e6ab7b913370672b1d8e0aadf0b34ef1c143.tar.bz2 |
asyncio: replace our with asynchronous in docstring
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/locks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index b4c316a..6cd6779 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 |