Use default asyncio.SelectorEventLoop

This commit is contained in:
Yury Selivanov 2014-01-14 11:44:49 -05:00
parent e9333a807d
commit 62446d3f6e
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class _GreenLoopMixin(object):
return self._green_run(ovr, args, kwargs)
class GreenUnixSelectorLoop(_GreenLoopMixin, unix_events.SelectorEventLoop):
class GreenUnixSelectorLoop(_GreenLoopMixin, asyncio.SelectorEventLoop):
pass