diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:37:45 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:37:45 (GMT) |
commit | 3563ccc9a0f9fc829a6a45a0a1717f03ca234e03 (patch) | |
tree | d9957fa81287210a44e6d6e1ddc1ef826ed6db3e | |
parent | a5a00626272b399d519c0707ebb785161b24d9b5 (diff) | |
parent | 996083d6e65a96304a3d7ff61420f99883d3137e (diff) | |
download | cpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.zip cpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.tar.gz cpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.tar.bz2 |
Merge 3.4
-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 |