asyncio: Clean up formatting.

This commit is contained in:
Guido van Rossum 2013-12-19 13:49:32 -08:00
parent 4c3c699e62
commit 9ba75db3c5
2 changed files with 4 additions and 4 deletions

View file

@ -302,9 +302,7 @@ class Future:
self._schedule_callbacks()
if _PY34:
self._traceback = traceback.format_exception(
exception.__class__,
exception,
exception.__traceback__)
exception.__class__, exception, exception.__traceback__)
else:
self._tb_logger = _TracebackLogger(exception)
# Arrange for the logger to be activated after all callbacks