mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Remove unused or redundant imports in concurrent.futures and multiprocessing.
This commit is contained in:
parent
f8240d6564
commit
04842a84c3
12 changed files with 7 additions and 28 deletions
|
@ -74,7 +74,7 @@ def _worker(executor_reference, work_queue):
|
|||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue