diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:37:58 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:37:58 (GMT) |
commit | cb69843587369156487da26fa4a8148630785865 (patch) | |
tree | 0dd4def814b1bea1bc64b33df8ffb13bffd3af21 | |
parent | afe0ab6d2406551e3357c3a38ff09dfab0d8cc8c (diff) | |
parent | 3563ccc9a0f9fc829a6a45a0a1717f03ca234e03 (diff) | |
download | cpython-cb69843587369156487da26fa4a8148630785865.zip cpython-cb69843587369156487da26fa4a8148630785865.tar.gz cpython-cb69843587369156487da26fa4a8148630785865.tar.bz2 |
Merge 3.5
-rw-r--r-- | Lib/asyncio/base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 5a536a2..f6cc88f 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -1205,7 +1205,7 @@ class BaseEventLoop(events.AbstractEventLoop): return enabled = bool(enabled) - if self._coroutine_wrapper_set is enabled: + if self._coroutine_wrapper_set == enabled: return wrapper = coroutines.debug_wrapper |