summaryrefslogtreecommitdiff
path: root/Lib/asyncio/locks.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncio/locks.py')
-rw-r--r--Lib/asyncio/locks.py29
1 files changed, 13 insertions, 16 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py
index 92661830a0..750c435917 100644
--- a/Lib/asyncio/locks.py
+++ b/Lib/asyncio/locks.py
@@ -4,7 +4,6 @@ __all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
import collections
-from . import compat
from . import events
from . import futures
from .coroutines import coroutine
@@ -67,23 +66,21 @@ class _ContextManagerMixin:
yield from self.acquire()
return _ContextManager(self)
- if compat.PY35:
-
- def __await__(self):
- # To make "with await lock" work.
- yield from self.acquire()
- return _ContextManager(self)
+ def __await__(self):
+ # To make "with await lock" work.
+ yield from self.acquire()
+ return _ContextManager(self)
- @coroutine
- def __aenter__(self):
- yield from self.acquire()
- # We have no use for the "as ..." clause in the with
- # statement for locks.
- return None
+ @coroutine
+ def __aenter__(self):
+ yield from self.acquire()
+ # We have no use for the "as ..." clause in the with
+ # statement for locks.
+ return None
- @coroutine
- def __aexit__(self, exc_type, exc, tb):
- self.release()
+ @coroutine
+ def __aexit__(self, exc_type, exc, tb):
+ self.release()
class Lock(_ContextManagerMixin):