commit | 04842a84c31d82d9c2255e6575344412c58e518e | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Fri Nov 11 20:05:50 2011 +0100 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Fri Nov 11 20:05:50 2011 +0100 |
tree | 9f4627fbf8715735104187c417d1c5e2f7f6ebc5 | |
parent | f8240d6564c6d8f166256fca9b0fb6e9b89c7db1 [diff] [blame] |
Remove unused or redundant imports in concurrent.futures and multiprocessing.
diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py index fbac088..95bb682 100644 --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py
@@ -74,7 +74,7 @@ work_queue.put(None) return del executor - except BaseException as e: + except BaseException: _base.LOGGER.critical('Exception in worker', exc_info=True) class ThreadPoolExecutor(_base.Executor):