diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 10:37:42 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-18 10:37:42 (GMT) |
commit | d6dc7bdaf92915fa47caa47f35ca3cb4505f9f34 (patch) | |
tree | 891cf4020d85da52ab5cfd4f55fb75e461fecc7b /Lib/asyncio/locks.py | |
parent | d55436ace3cb908e0f7a1f368a2cd8879175947d (diff) | |
download | cpython-d6dc7bdaf92915fa47caa47f35ca3cb4505f9f34.zip cpython-d6dc7bdaf92915fa47caa47f35ca3cb4505f9f34.tar.gz cpython-d6dc7bdaf92915fa47caa47f35ca3cb4505f9f34.tar.bz2 |
Issue #23456: Add missing @coroutine decorators in asyncio
Diffstat (limited to 'Lib/asyncio/locks.py')
-rw-r--r-- | Lib/asyncio/locks.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index b943e9d..41a68c6 100644 --- a/Lib/asyncio/locks.py +++ b/Lib/asyncio/locks.py @@ -162,6 +162,7 @@ class Lock: # always raises; that's how the with-statement works. pass + @coroutine def __iter__(self): # This is not a coroutine. It is meant to enable the idiom: # @@ -362,6 +363,7 @@ class Condition: def __exit__(self, *args): pass + @coroutine def __iter__(self): # See comment in Lock.__iter__(). yield from self.acquire() @@ -446,6 +448,7 @@ class Semaphore: def __exit__(self, *args): pass + @coroutine def __iter__(self): # See comment in Lock.__iter__(). yield from self.acquire() |