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

@ -415,10 +415,6 @@ class StreamReaderTests(test_utils.TestCase):
def set_err():
stream.set_exception(ValueError())
@asyncio.coroutine
def readline():
yield from stream.readline()
t1 = asyncio.Task(stream.readline(), loop=self.loop)
t2 = asyncio.Task(set_err(), loop=self.loop)
@ -429,11 +425,7 @@ class StreamReaderTests(test_utils.TestCase):
def test_exception_cancel(self):
stream = asyncio.StreamReader(loop=self.loop)
@asyncio.coroutine
def read_a_line():
yield from stream.readline()
t = asyncio.Task(read_a_line(), loop=self.loop)
t = asyncio.Task(stream.readline(), loop=self.loop)
test_utils.run_briefly(self.loop)
t.cancel()
test_utils.run_briefly(self.loop)