fix CPU usage

This commit is contained in:
破娃酱 2017-02-13 01:38:48 +08:00
parent 85955d6e6d
commit 2723295101

View file

@ -222,8 +222,8 @@ class EventLoop(object):
for callback in self._periodic_callbacks:
callback()
self._last_time = now
if events and (handle is False):
time.sleep(0.01)
if events and not handle:
time.sleep(0.02)
def __del__(self):
self._impl.close()