summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:37:45 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:37:45 (GMT)
commit3563ccc9a0f9fc829a6a45a0a1717f03ca234e03 (patch)
treed9957fa81287210a44e6d6e1ddc1ef826ed6db3e /Lib
parenta5a00626272b399d519c0707ebb785161b24d9b5 (diff)
parent996083d6e65a96304a3d7ff61420f99883d3137e (diff)
downloadcpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.zip
cpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.tar.gz
cpython-3563ccc9a0f9fc829a6a45a0a1717f03ca234e03.tar.bz2
Merge 3.4
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/base_events.py2
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