[Python-checkins] cpython: asyncio: replace our with asynchronous in docstring

victor.stinner python-checkins at python.org
Mon Dec 2 14:31:53 CET 2013


http://hg.python.org/cpython/rev/b7c1977dbe16
changeset:   87701:b7c1977dbe16
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Dec 02 14:31:43 2013 +0100
summary:
  asyncio: replace our with asynchronous in docstring

files:
  Lib/asyncio/locks.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py
--- a/Lib/asyncio/locks.py
+++ b/Lib/asyncio/locks.py
@@ -204,7 +204,7 @@
 
 
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list