From 62446d3f6e98a8dad03932901524f6394120e7e3 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 14 Jan 2014 11:44:49 -0500 Subject: [PATCH] Use default asyncio.SelectorEventLoop --- greenio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greenio/__init__.py b/greenio/__init__.py index 9596059..3d2ffee 100644 --- a/greenio/__init__.py +++ b/greenio/__init__.py @@ -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