diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-30 09:26:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 09:26:33 (GMT) |
commit | 90549676e063c2c818cfc14213d3adb7edcc2bd5 (patch) | |
tree | 110a338fd217521dd310994e673e3092ec6817a8 /Lib/concurrent | |
parent | 3209cbd99b6d65aa18b3beb124fac9c792b8993d (diff) | |
download | cpython-90549676e063c2c818cfc14213d3adb7edcc2bd5.zip cpython-90549676e063c2c818cfc14213d3adb7edcc2bd5.tar.gz cpython-90549676e063c2c818cfc14213d3adb7edcc2bd5.tar.bz2 |
bpo-40443: Remove unused imports in the stdlib (GH-19803)
Diffstat (limited to 'Lib/concurrent')
-rw-r--r-- | Lib/concurrent/futures/process.py | 1 | ||||
-rw-r--r-- | Lib/concurrent/futures/thread.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index a76e2c9..90bc98b 100644 --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -45,7 +45,6 @@ Process #1..n: __author__ = 'Brian Quinlan (brian@sweetapp.com)' -import atexit import os from concurrent.futures import _base import queue diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py index 2810b35..b7a2cac 100644 --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py @@ -5,7 +5,6 @@ __author__ = 'Brian Quinlan (brian@sweetapp.com)' -import atexit from concurrent.futures import _base import itertools import queue |