From 48671ce22edb4f34957ba1a3d27300d2ee1e2a73 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 3 May 2014 23:17:10 +0300 Subject: [PATCH] asyncio_micro: IODone syscall should return to coroutine. --- asyncio_micro/asyncio_micro.py | 1 - 1 file changed, 1 deletion(-) diff --git a/asyncio_micro/asyncio_micro.py b/asyncio_micro/asyncio_micro.py index 62568a46..5ae10ea4 100644 --- a/asyncio_micro/asyncio_micro.py +++ b/asyncio_micro/asyncio_micro.py @@ -79,7 +79,6 @@ class EventLoop: self.remove_reader(ret.obj.fileno()) elif ret.op == IO_WRITE: self.remove_writer(ret.obj.fileno()) - continue except StopIteration as e: log.debug("Gen finished: %s", cb) continue