diff options
author | Guido van Rossum <guido@python.org> | 2013-12-19 20:47:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-19 20:47:38 (GMT) |
commit | 994bf4332f03e2f7a7c642337853404f1f192071 (patch) | |
tree | aa1561e82351f712438468538338f13c697a233f /Lib/asyncio/locks.py | |
parent | 3b8df2683d608adf491a453899ef08550498dd46 (diff) | |
download | cpython-994bf4332f03e2f7a7c642337853404f1f192071.zip cpython-994bf4332f03e2f7a7c642337853404f1f192071.tar.gz cpython-994bf4332f03e2f7a7c642337853404f1f192071.tar.bz2 |
Shorten lines.
Diffstat (limited to 'Lib/asyncio/locks.py')
-rw-r--r-- | Lib/asyncio/locks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index 6cd6779..9e85292 100644 --- a/Lib/asyncio/locks.py +++ b/Lib/asyncio/locks.py @@ -138,7 +138,7 @@ class Lock: class Event: - """An Event implementation, asynchronous equivalent to threading.Event. + """Asynchronous equivalent to threading.Event. Class implementing event objects. An event manages a flag that can be set to true with the set() method and reset to false with the clear() method. @@ -204,7 +204,7 @@ class Event: class Condition: - """A Condition implementation, asynchronous equivalent to threading.Condition. + """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 |