summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:37:58 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:37:58 (GMT)
commitcb69843587369156487da26fa4a8148630785865 (patch)
tree0dd4def814b1bea1bc64b33df8ffb13bffd3af21
parentafe0ab6d2406551e3357c3a38ff09dfab0d8cc8c (diff)
parent3563ccc9a0f9fc829a6a45a0a1717f03ca234e03 (diff)
downloadcpython-cb69843587369156487da26fa4a8148630785865.zip
cpython-cb69843587369156487da26fa4a8148630785865.tar.gz
cpython-cb69843587369156487da26fa4a8148630785865.tar.bz2
Merge 3.5
-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