summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-02 13:31:43 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-02 13:31:43 (GMT)
commit10a8e6ab7b913370672b1d8e0aadf0b34ef1c143 (patch)
treec839253912433898fbace038328b2a4be3dbd04c /Lib/asyncio
parentc37dd614b6acd841ff0f638e9ef21a7d8db561f0 (diff)
downloadcpython-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.py2
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