diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-11 11:58:52 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-11 11:58:52 +0200 |
commit | 39578d8510db1eb48facf45ca24c2c7751d6dbdf (patch) | |
tree | f1cbbf45d33c3e77bd5f0ba74c7d69e122f08d07 /Lib/asyncio/streams.py | |
parent | 8934961da800107462544b1c432cd9f01887d7fe (diff) | |
parent | 770e48d0174726e339074cfffa68fce23768aab5 (diff) | |
download | cpython-git-39578d8510db1eb48facf45ca24c2c7751d6dbdf.tar.gz |
(Merge 3.4) 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
Diffstat (limited to 'Lib/asyncio/streams.py')
-rw-r--r-- | Lib/asyncio/streams.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index 9bde218bfa..9b654cdbb4 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 |