mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
asyncio: pyflakes, remove unused import
tests: Remove unused function; inline another function
This commit is contained in:
parent
cd0f7f9832
commit
442b0adccd
3 changed files with 2 additions and 11 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue