Commit 9ba75db3 authored by Guido van Rossum's avatar Guido van Rossum

asyncio: Clean up formatting.

parent 4c3c699e
...@@ -302,9 +302,7 @@ class Future: ...@@ -302,9 +302,7 @@ class Future:
self._schedule_callbacks() self._schedule_callbacks()
if _PY34: if _PY34:
self._traceback = traceback.format_exception( self._traceback = traceback.format_exception(
exception.__class__, exception.__class__, exception, exception.__traceback__)
exception,
exception.__traceback__)
else: else:
self._tb_logger = _TracebackLogger(exception) self._tb_logger = _TracebackLogger(exception)
# Arrange for the logger to be activated after all callbacks # Arrange for the logger to be activated after all callbacks
......
...@@ -1115,6 +1115,7 @@ class TaskTests(unittest.TestCase): ...@@ -1115,6 +1115,7 @@ class TaskTests(unittest.TestCase):
def test_current_task(self): def test_current_task(self):
self.assertIsNone(tasks.Task.current_task(loop=self.loop)) self.assertIsNone(tasks.Task.current_task(loop=self.loop))
@tasks.coroutine @tasks.coroutine
def coro(loop): def coro(loop):
self.assertTrue(tasks.Task.current_task(loop=loop) is task) self.assertTrue(tasks.Task.current_task(loop=loop) is task)
...@@ -1146,7 +1147,8 @@ class TaskTests(unittest.TestCase): ...@@ -1146,7 +1147,8 @@ class TaskTests(unittest.TestCase):
task1 = tasks.Task(coro1(self.loop), loop=self.loop) task1 = tasks.Task(coro1(self.loop), loop=self.loop)
task2 = tasks.Task(coro2(self.loop), loop=self.loop) task2 = tasks.Task(coro2(self.loop), loop=self.loop)
self.loop.run_until_complete(tasks.wait((task1, task2), loop=self.loop)) self.loop.run_until_complete(tasks.wait((task1, task2),
loop=self.loop))
self.assertIsNone(tasks.Task.current_task(loop=self.loop)) self.assertIsNone(tasks.Task.current_task(loop=self.loop))
# Some thorough tests for cancellation propagation through # Some thorough tests for cancellation propagation through
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment