asyncio: pyflakes, remove unused import

tests: Remove unused function; inline another function
This commit is contained in:
Victor Stinner 2015-01-21 23:39:16 +01:00
parent cd0f7f9832
commit 442b0adccd
3 changed files with 2 additions and 11 deletions

View file

@ -636,7 +636,7 @@ class BaseEventLoop(events.AbstractEventLoop):
try:
yield from waiter
except Exception as exc:
except Exception:
transport.close()
raise