diff options
author | Guido van Rossum <guido@python.org> | 2013-12-19 13:49:32 -0800 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-19 13:49:32 -0800 |
commit | 9ba75db3c5d12c8d03bccc41f27dd9c6134cfe3b (patch) | |
tree | bef78c9fd1a00dd1e8ee6672fc6d48e87721b290 /Lib/asyncio/futures.py | |
parent | 4c3c699e623ac8d942a4ede93b13d8dc4146e0ec (diff) | |
download | cpython-git-9ba75db3c5d12c8d03bccc41f27dd9c6134cfe3b.tar.gz |
asyncio: Clean up formatting.
Diffstat (limited to 'Lib/asyncio/futures.py')
-rw-r--r-- | Lib/asyncio/futures.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/asyncio/futures.py b/Lib/asyncio/futures.py index 1be3117ebb..0188f52d21 100644 --- a/Lib/asyncio/futures.py +++ b/Lib/asyncio/futures.py @@ -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 |