diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2015-05-08 11:15:11 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2015-05-08 11:15:11 (GMT) |
commit | 0048835e49ac79e416b2318f39b7a696cb053384 (patch) | |
tree | 8037be89bf595d6c6377ef786800f25c13346574 | |
parent | 38337d1e1542eddd7f3f839535c8b440a3c90499 (diff) | |
parent | b79e01248dceb398590b30532fca1a75727ce763 (diff) | |
download | cpython-0048835e49ac79e416b2318f39b7a696cb053384.zip cpython-0048835e49ac79e416b2318f39b7a696cb053384.tar.gz cpython-0048835e49ac79e416b2318f39b7a696cb053384.tar.bz2 |
Merge 3.4
-rw-r--r-- | Doc/library/asyncio-sync.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 7925731..ad3b523 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -275,7 +275,7 @@ Semaphore Returns ``True`` if semaphore can not be acquired immediately. - .. coroutinemethod:: release() + .. method:: release() Release a semaphore, incrementing the internal counter by one. When it was zero on entry and another coroutine is waiting for it to become @@ -291,4 +291,3 @@ BoundedSemaphore This raises :exc:`ValueError` in :meth:`~Semaphore.release` if it would increase the value above the initial value. - |