From 770e48d0174726e339074cfffa68fce23768aab5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 11 Jul 2014 11:58:33 +0200 Subject: asyncio: sync with Tulip * Tulip issue #182: Improve logs of BaseEventLoop._run_once() - Don't log non-blocking poll - Only log polling with a timeout if it gets events or if it timed out after more than 1 second. * Fix some pyflakes warnings: remove unused imports --- Lib/asyncio/streams.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/asyncio/streams.py') diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index 9bde218bfa4..9b654cdbb45 100644 --- a/Lib/asyncio/streams.py +++ b/Lib/asyncio/streams.py @@ -14,7 +14,6 @@ from . import coroutines from . import events from . import futures from . import protocols -from . import tasks from .coroutines import coroutine -- cgit v1.2.3