diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-02 14:31:43 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-02 14:31:43 +0100 |
commit | 10a8e6ab7b913370672b1d8e0aadf0b34ef1c143 (patch) | |
tree | c839253912433898fbace038328b2a4be3dbd04c /Lib/asyncio/locks.py | |
parent | c37dd614b6acd841ff0f638e9ef21a7d8db561f0 (diff) | |
download | cpython-git-10a8e6ab7b913370672b1d8e0aadf0b34ef1c143.tar.gz |
asyncio: replace our with asynchronous in docstring
Diffstat (limited to 'Lib/asyncio/locks.py')
-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 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 |