Browse Source

asyncio: Sync with mainstream

pull/224/head
Yury Selivanov 11 years ago
parent
commit
996083d6e6
  1. 2
      Lib/asyncio/base_events.py

2
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

Loading…
Cancel
Save