[Python-checkins] cpython (merge 3.4 -> 3.5): Merge 3.4

yury.selivanov python-checkins at python.org
Tue Aug 4 21:38:35 CEST 2015


https://hg.python.org/cpython/rev/07c0384eaacb
changeset:   97245:07c0384eaacb
branch:      3.5
parent:      97242:45d1baa4fe62
parent:      97244:527f1bbf1840
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Tue Aug 04 15:37:45 2015 -0400
summary:
  Merge 3.4

files:
  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
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -1205,7 +1205,7 @@
             return
 
         enabled = bool(enabled)
-        if self._coroutine_wrapper_set is enabled:
+        if self._coroutine_wrapper_set == enabled:
             return
 
         wrapper = coroutines.debug_wrapper

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list